gpt4 book ai didi

c++ - 错误 : use of class template 'blocked_range' requires template arguments

转载 作者:行者123 更新时间:2023-12-03 07:07:08 25 4
gpt4 key购买 nike

我正在使用 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 argumentsblocked_range.h:45:7: note: template is declared here

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

最佳答案

tbb::blocked_range是一个类模板,你正试图使用​​ 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 指定 Value 类型模板参数: :blocked_range 类模板。从上面,我们看到 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 进行编译。

关于c++ - 错误 : use of class template 'blocked_range' requires template arguments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64155962/

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