我想使用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/

10-11 22:44