|
NexusForce 1.0.0
A Modern C++ Library with extended functionality, web components, and utility libraries
|
并行算法 更多...
函数 | |
| template<typename Iterator, typename BinaryOperation, typename Result, size_t Threshhold = 10> | |
| void | reduce (Iterator first, Iterator last, BinaryOperation op, Result &res) |
| 并行归约操作 | |
| template<typename Iterator, typename UnaryOperation, typename BinaryOp, typename Result, size_t Threshhold = 10> | |
| void | transform_reduce (Iterator first, Iterator last, UnaryOperation transform, BinaryOp reduce, Result &res) |
| 并行变换归约操作 | |