error: use of class template 'blocked_range' requires template arguments

error: use of class template 'blocked_range' requires template arguments

我正在使用 TBB 这样的库:

// Concurrency.hpp

#include <tbb/spin_mutex.h>
#include <tbb/mutex.h>
#include <tbb/parallel_for.h>
#include <tbb/parallel_reduce.h>

// Restrict templates to work for only the specified set of types
template<class T, class O = T>
using IntegerOnly = std::enable_if_t<std::is_integral<T>::value, O>;

// An extra helper template
template<class Fn, class I>
static IntegerOnly<I, void> loop_(const tbb::blocked_range<I> &range, Fn &&fn)
{
    for (I i = range.begin(); i < range.end(); ++i) fn(i);
}

// Calling TBB parallel-for by this template
template<class It, class Fn>
static void for_each(It from, It to, Fn &&fn, size_t granularity = 1)
{
    tbb::parallel_for(tbb::blocked_range{from, to, granularity}, // => Error happens at this line
                      [&fn, from](const auto &range) {
        loop_(range, std::forward<Fn>(fn));
    });
}

我收到这个错误:

Concurrency.hpp:43:32: error: use of class template 'blocked_range' requires template arguments blocked_range.h:45:7: note: template is declared here

以前有人运行遇到过这个错误吗?如何解决?

错误显示 'blocked_range' requires template arguments

一种解决方案是添加一些模板参数。我不知道它们应该是什么,但也许

tbb::blocked_range<I>{from, to, granularity}
                  ^^^
                  template argument here

tbb::blocked_range is a class template, and you are attempting to use class template argument deduction (CTAD) 在构造它时省略任何显式模板参数。

template<typename Value>
class blocked_range {
public:
    //! Type of a value
    /** Called a const_iterator for sake of algorithms that need to treat a blocked_range
        as an STL container. */
    typedef Value const_iterator;

    // ...

    //! Construct range over half-open interval [begin,end), with the given grainsize.
    blocked_range( Value begin_, Value end_, size_type grainsize_=1 ) // ...

    // ...
};
但是,

CTAD 是 C++17 的一项功能,因此如果您使用较早的语言版本进行编译,则需要为 tbb::blocked_range class模板。从上面,我们看到 Value 类型应该作为迭代器类型,特别是在调用站点传递给其构造函数的前两个参数的类型,fromto。因此,您可以按如下方式修改您的代码段:

// Calling TBB parallel-for by this template
template<class It, class Fn>
static void for_each(It from, It to, Fn &&fn, size_t granularity = 1)
{
    tbb::parallel_for(tbb::blocked_range<It>{from, to, granularity},
                      [&fn, from](const auto &range) {
        loop_(range, std::forward<Fn>(fn));
    });
}

根据您在评论中提到的内容,这可能是一个可移植性问题,并且您可能 运行 在此问题之后遇到更多问题,并且可能需要考虑查看项目的编译标志,所以看看您是否可以改用 C++17 进行编译。