Bolt
1.3
C++ template library with support for OpenCL
|
max_element returns the location of the first maximum element in the specified range. 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 ForwardIterator > | |
ForwardIterator | bolt::cl::max_element (bolt::cl::control &ctl, ForwardIterator first, ForwardIterator last, const std::string &cl_code="") |
The max_element returns the location of the first maximum element in the specified range. | |
template<typename ForwardIterator > | |
ForwardIterator | bolt::cl::max_element (ForwardIterator first, ForwardIterator last, const std::string &cl_code="") |
template<typename ForwardIterator , typename BinaryPredicate > | |
ForwardIterator | bolt::cl::max_element (bolt::cl::control &ctl, ForwardIterator first, ForwardIterator last, BinaryPredicate binary_op, const std::string &cl_code="") |
The max_element returns the location of the first maximum element in the specified range using the specified binary_op. | |
template<typename ForwardIterator , typename BinaryPredicate > | |
ForwardIterator | bolt::cl::max_element (ForwardIterator first, ForwardIterator last, BinaryPredicate binary_op, const std::string &cl_code="") |
max_element returns the location of the first maximum element in the specified range.