Bolt
1.3
C++ template library with support for OpenCL
|
Performs on a sequence, the transformation defined by a unary operator, then the inclusive scan defined by a binary operator. More...
Go to the source code of this file.
Namespaces | |
namespace | bolt |
Defining namespace for the Bolt project. | |
namespace | bolt::cl |
Namespace containing OpenCL related data types and functions. | |
Functions | |
template<typename InputIterator , typename OutputIterator , typename UnaryFunction , typename BinaryFunction > | |
OutputIterator | bolt::cl::transform_inclusive_scan (bolt::cl::control &ctl, InputIterator first, InputIterator last, OutputIterator result, UnaryFunction unary_op, BinaryFunction binary_op, const std::string &user_code="") |
transform_inclusive_scan performs, on a sequence, the transformation defined by a unary operator, then the inclusive scan defined by a binary operator. | |
template<typename InputIterator , typename OutputIterator , typename UnaryFunction , typename BinaryFunction > | |
OutputIterator | bolt::cl::transform_inclusive_scan (InputIterator first, InputIterator last, OutputIterator result, UnaryFunction unary_op, BinaryFunction binary_op, const std::string &user_code="") |
template<typename InputIterator , typename OutputIterator , typename UnaryFunction , typename T , typename BinaryFunction > | |
OutputIterator | bolt::cl::transform_exclusive_scan (bolt::cl::control &ctl, InputIterator first, InputIterator last, OutputIterator result, UnaryFunction unary_op, T init, BinaryFunction binary_op, const std::string &user_code="") |
transform_exclusive_scan performs, on a sequence, the transformation defined by a unary operator, then the exclusive scan defined by a binary operator. | |
template<typename InputIterator , typename OutputIterator , typename UnaryFunction , typename T , typename BinaryFunction > | |
OutputIterator | bolt::cl::transform_exclusive_scan (InputIterator first, InputIterator last, OutputIterator result, UnaryFunction unary_op, T init, BinaryFunction binary_op, const std::string &user_code="") |
Performs on a sequence, the transformation defined by a unary operator, then the inclusive scan defined by a binary operator.