Bolt
1.3
C++ template library with support for OpenCL
|
#include <amp.h>
#include "bolt/amp/functional.h"
#include "bolt/amp/bolt.h"
#include <string>
#include <assert.h>
#include <bolt/amp/detail/unique.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 ForwardIterator > | |
ForwardIterator | bolt::amp::unique (control &ctl, ForwardIterator first, ForwardIterator last) |
template<typename ForwardIterator > | |
ForwardIterator | bolt::amp::unique (ForwardIterator first, ForwardIterator last) |
template<typename ForwardIterator , typename BinaryPredicate > | |
ForwardIterator | bolt::amp::unique (control &ctl, ForwardIterator first, ForwardIterator last, BinaryPredicate binary_pred) |
template<typename ForwardIterator , typename BinaryPredicate > | |
ForwardIterator | bolt::amp::unique (ForwardIterator first, ForwardIterator last, BinaryPredicate binary_pred) |
template<typename InputIterator , typename OutputIterator > | |
OutputIterator | bolt::amp::unique_copy (control &ctl, InputIterator first, InputIterator last, OutputIterator output) |
template<typename InputIterator , typename OutputIterator > | |
OutputIterator | bolt::amp::unique_copy (InputIterator first, InputIterator last, OutputIterator output) |
template<typename InputIterator , typename OutputIterator , typename BinaryPredicate > | |
OutputIterator | bolt::amp::unique_copy (control &ctl, InputIterator first, InputIterator last, OutputIterator output, BinaryPredicate binary_pred) |
template<typename InputIterator , typename OutputIterator , typename BinaryPredicate > | |
OutputIterator | bolt::amp::unique_copy (InputIterator first, InputIterator last, OutputIterator output, BinaryPredicate binary_pred) |