gpt4 book ai didi

c++ - TBB parallel_for 编译错误

转载 作者:行者123 更新时间:2023-11-27 22:49:48 25 4
gpt4 key购买 nike

我想使用 TBB parallel_for 我已将其添加到我的代码中进行测试

#include <tbb/parallel_for.h>
#include <tbb/blocked_range.h>
#include <tbb/tbb.h>

std::vector<std::tuple<std::string, unsigned int, std::string>> commands;
auto n = commands.size();
tbb::parallel_for(0, n, [&](int i) {
const auto &tuple = commands[i];
} );

我的编译行是:

g++ -std=c++11 -Wall -Wextra -g -Og TextMiningApp.cpp -ltbb -o TextMiningApp

我的编译器错误是:

TextMiningApp.cpp: In function ‘int main(int, char**)’:
TextMiningApp.cpp:184:7: error: no matching function for call to ‘parallel_for(int, long unsigned int&, main(int, char**)::<lambda(int)>)’
} );
^
In file included from TextMiningApp.cpp:15:0:
/usr/include/tbb/parallel_for.h:185:6: note: candidate: template<class Range, class Body> void tbb::parallel_for(const Range&, const Body&)
void parallel_for( const Range&
^

你有解决这个问题的想法吗?

最佳答案

你的代码的问题是 0类型为 int , 而 n类型为 std::size_t .存在不匹配,您需要进行转换。解决方法如下:

tbb::parallel_for(static_cast<std::size_t>(0), n, [&](std::size_t i)) {
// other code
}

另一个解决方案是使用 tbb::blocked_range<T>指定范围,即 tbb::parallel_for 的另一个重载.

tbb::parallel_for(tbb::blocked_range<std::size_t>(0, n),
[&](const tbb::blocked_range<std::size_t> &range) {
for (auto i = range.begin(); i != range.end(); ++i)
const auto &tuple = commands[i];
} );

显然,第一种方案更为简洁。但是,第二个更灵活。因为对于第一个,你只能指定循环体,而对于第二个,你可以在循环体之外做更多的事情。

关于c++ - TBB parallel_for 编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38461296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com