|
Bolt
1.3
C++ template library with support for OpenCL
|
Copies each element from the sequence to result. More...
#include "bolt/cl/device_vector.h"#include <string>#include <iostream>#include <bolt/cl/detail/copy.inl>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 > | |
| OutputIterator | bolt::cl::copy (const bolt::cl::control &ctl, InputIterator first, InputIterator last, OutputIterator result, const std::string &user_code="") |
| template<typename InputIterator , typename OutputIterator > | |
| OutputIterator | bolt::cl::copy (InputIterator first, InputIterator last, OutputIterator result, const std::string &user_code="") |
| template<typename InputIterator , typename Size , typename OutputIterator > | |
| OutputIterator | bolt::cl::copy_n (const bolt::cl::control &ctl, InputIterator first, Size n, OutputIterator result, const std::string &user_code="") |
| template<typename InputIterator , typename Size , typename OutputIterator > | |
| OutputIterator | bolt::cl::copy_n (InputIterator first, Size n, OutputIterator result, const std::string &user_code="") |
Copies each element from the sequence to result.
1.8.3