std::experimental::reduce, std::experimental::hmin, std::experimental::hmax
来自 cppreference.cn
< cpp | experimental | simd
定义于头文件 <experimental/simd> |
||
template< class T, class Abi, class BinaryOperation = std::plus<> > T reduce( const simd<T, Abi>& v, BinaryOperation binary_op = {} ); |
(1) | (并行技术规范 v2) |
template< class M, class V, class BinaryOperation > typename V::value_type |
(2) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(3) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(4) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(5) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(6) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(7) | (并行技术规范 v2) |
template< class T, class Abi > T hmin( const simd<T, Abi>& v ) noexcept; |
(8) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(9) | (并行技术规范 v2) |
template< class T, class Abi > T hmax( const simd<T, Abi>& v ) noexcept; |
(10) | (并行技术规范 v2) |
template< class M, class V > typename V::value_type |
(11) | (并行技术规范 v2) |
1) 对 v 中的所有值执行 binary_op 归约。
2) 对 x 中关联掩码元素为 true 的值执行 binary_op 归约。
3) 返回 x 中关联掩码元素为 true 的所有值的和。
4) 返回 x 中关联掩码元素为 true 的所有值的积。
5) 返回 x 中关联掩码元素为 true 的所有值通过按位与运算的聚合结果。
6) 返回 x 中关联掩码元素为 true 的所有值通过按位或运算的聚合结果。
7) 返回 x 中关联掩码元素为 true 的所有值通过按位异或运算的聚合结果。
如果 binary_op 不满足结合律或交换律,则行为不确定。
目录 |
[编辑] 参数
v | - | 要应用归约的 simd 向量 |
x | - | 要应用归约的 where 表达式的返回值 |
identity_element | - | 对 binary_op 起标识元素作用的值;对于类型为 V::value_type 的所有有限 a,必须满足 binary_op(identity_element, a) == a |
binary_op | - | 二元 函数对象,将以未指定顺序应用于类型为 V::value_type 或 simd<V::value_type, A> 的参数,其中 ABI 标签 A 未指定。binary_op(v, v) 必须可转换为 V |
[编辑] 返回值
操作的结果,类型为
1,8,10)
T
2-7,9,11) V::value_type
[编辑] 示例
运行此代码
#include <array> #include <cassert> #include <cstddef> #include <experimental/simd> #include <functional> #include <iostream> #include <numeric> namespace stdx = std::experimental; int main() { using V = stdx::native_simd<double>; alignas(stdx::memory_alignment_v<V>) std::array<V::value_type, 1024> data; std::iota(data.begin(), data.end(), 0); V::value_type acc{}; for (std::size_t i = 0; i < data.size(); i += V::size()) acc += stdx::reduce(V(&data[i], stdx::vector_aligned), std::plus{}); std::cout << "sum of data = " << acc << '\n'; using W = stdx::fixed_size_simd<int, 4>; alignas(stdx::memory_alignment_v<W>) std::array<int, 4> arr{2, 5, 4, 1}; auto w = W(&arr[0], stdx::vector_aligned); assert(stdx::hmin(w) == 1 and stdx::hmax(w) == 5); }
输出
sum of data = 523776
[编辑] 参阅
(C++17) |
类似于 std::accumulate,但顺序是乱序的 (函数模板) |