- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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_rangeValue
类型应该作为迭代器类型,特别是传递给其构造函数的前两个参数的类型,from
和 to
在调用站点。因此,您可以按如下方式修改您的代码段:
// 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/
我正在使用 TBB像这样的图书馆: // Concurrency.hpp #include #include #include #include // Restrict templates t
我是一名优秀的程序员,十分优秀!