|
Bolt
1.3
C++ template library with support for OpenCL
|
Copies each element from the sequence to result. More...
#include <bolt/amp/bolt.h>#include <bolt/amp/device_vector.h>#include <string>#include <iostream>#include <bolt/amp/detail/copy.inl>Go to the source code of this file.
Namespaces | |
| namespace | bolt |
| Defining namespace for the Bolt project. | |
| namespace | bolt::amp |
| Namespace containing AMP related data types and functions. | |
Functions | |
| template<typename InputIterator , typename OutputIterator > | |
| OutputIterator | bolt::amp::copy (const bolt::amp::control &ctl, InputIterator first, InputIterator last, OutputIterator result) |
| template<typename InputIterator , typename OutputIterator > | |
| OutputIterator | bolt::amp::copy (InputIterator first, InputIterator last, OutputIterator result) |
| template<typename InputIterator , typename Size , typename OutputIterator > | |
| OutputIterator | bolt::amp::copy_n (const bolt::amp::control &ctl, InputIterator first, Size n, OutputIterator result) |
| template<typename InputIterator , typename Size , typename OutputIterator > | |
| OutputIterator | bolt::amp::copy_n (InputIterator first, Size n, OutputIterator result) |
| template<typename DerivedPolicy , typename InputIterator , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::copy_if (const bolt::amp::control &ctl, InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
| template<typename InputIterator , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
| template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::copy_if (const bolt::amp::control &ctl, InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
| template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::copy_if (InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
Copies each element from the sequence to result.
1.8.3