命名空间
变体
操作

std::experimental::parallel::transform_reduce

来自 cppreference.com
定义在头文件 <experimental/numeric>
template< class InputIt, class UnaryOp, class T, class BinaryOp >

T transform_reduce( InputIt first, InputIt last,

                    UnaryOp unary_op, T init, BinaryOp binary_op );
(1) (并行 TS)
template< class ExecutionPolicy,

          class InputIt, class UnaryOp, class T, class BinaryOp >
T transform_reduce( ExecutionPolicy&& policy,
                    InputIt first, InputIt last,

                    UnaryOp unary_op, T init, BinaryOp binary_op );
(2) (并行 TS)

unary_op 应用于范围 [firstlast) 中的每个元素,并使用初始值 init 对结果(可能以未指定的顺序排列和聚合)进行归约,归约运算由 binary_op 完成。

如果 binary_op 不是结合的或非交换的,则行为是不确定的。

如果 unary_opbinary_op 修改了 [firstlast) 中的任何元素或使其中的任何迭代器失效,则行为是未定义的。

内容

[编辑] 参数

first, last - 要应用算法的元素范围
init - 广义和的初始值
policy - the 执行策略
unary_op - 一元 函数对象,将应用于输入范围中的每个元素。返回类型必须可作为 binary_op 的输入
binary_op - 二元 函数对象,将以未指定的顺序应用于 unary_op 的结果、其他 binary_op 的结果和 init
类型要求
-
InputIt 必须满足 遗留输入迭代器 的要求。

[编辑] 返回值

initunary_op(*first)unary_op(*(first + 1))、... unary_op(*(last - 1)) 关于 binary_op 的广义和,其中广义和 GSUM(op, a
1
, ..., a
N
)
定义如下

  • 如果 N = 1,则为 a
    1
  • 如果 N > 1,则为 op(GSUM(op, b
    1
    , ..., b
    K
    ), GSUM(op, b
    M
    , ..., b
    N
    ))
    ,其中
  • b
    1
    , ..., b
    N
    可以是 a1, ..., aN 的任何排列,并且
  • 1 < K + 1 = M ≤ N

换句话说,unary_op 的结果可以以任意顺序分组和排列。

[编辑] 复杂度

O(last - first)unary_opbinary_op 的应用。

[编辑] 异常

  • 如果作为算法的一部分调用的函数执行时抛出异常,
  • 如果 policyparallel_vector_execution_policy,则调用 std::terminate
  • 如果 policysequential_execution_policyparallel_execution_policy,则算法退出,并返回一个包含所有未捕获异常的 exception_list。如果只有一个未捕获异常,则算法可能会在不将其包装在 exception_list 中的情况下重新抛出该异常。在遇到第一个异常后,算法在返回之前将执行多少工作是未指定的。
  • 如果 policy 是其他类型,则行为是实现定义的。
  • 如果算法无法分配内存(无论是自身内存还是处理用户异常时构建 exception_list 所需的内存),则会抛出 std::bad_alloc

[编辑] 注释

unary_op 不会应用于 init

如果范围为空,则会返回未修改的 init

  • 如果 policysequential_execution_policy 的实例,则所有操作都在调用线程中执行。
  • 如果 policyparallel_execution_policy 的实例,则操作可以在未指定的线程数量中执行,并且这些线程的执行顺序是未确定的。
  • 如果 policyparallel_vector_execution_policy 的实例,则执行可以并行化和矢量化:函数体边界不受尊重,用户代码可以以任意方式重叠和组合(特别是,这意味着用户提供的 Callable 绝不能获取互斥锁来访问共享资源)。

[编辑] 示例

transform_reduce 可用于并行化 std::inner_product

#include <boost/iterator/zip_iterator.hpp>
#include <boost/tuple.hpp>
#include <experimental/execution_policy>
#include <experimental/numeric>
#include <functional>
#include <iostream>
#include <iterator>
#include <vector>
 
int main()
{
    std::vector<double> xvalues(10007, 1.0), yvalues(10007, 1.0);
 
    double result = std::experimental::parallel::transform_reduce(
        std::experimental::parallel::par,
        boost::iterators::make_zip_iterator(
            boost::make_tuple(std::begin(xvalues), std::begin(yvalues))),
        boost::iterators::make_zip_iterator(
            boost::make_tuple(std::end(xvalues), std::end(yvalues))),
        [](auto r) { return boost::get<0>(r) * boost::get<1>(r); }
        0.0,
        std::plus<>()
    );
    std::cout << result << '\n';
}

输出

10007

[编辑] 另请参见

累加或折叠元素范围
(函数模板) [编辑]
将函数应用于元素范围,并将结果存储在目标范围内
(函数模板) [编辑]
(并行 TS)
类似于 std::accumulate,但顺序不同
(函数模板) [编辑]