thrust::negate
Defined in thrust/functional.h
-
template<typename T = void>
struct negate : public cuda::std::negate<void> negate
is a function object. Specifically, it is an Adaptable Unary Function. Iff
is an object of classnegate<T>
, andx
is an object of classT
, thenf(x)
returns-x
.The following code snippet demonstrates how to use
negate
to negate the elements of a device_vector offloats
.#include <thrust/device_vector.h> #include <thrust/functional.h> #include <thrust/sequence.h> #include <thrust/transform.h> ... const int N = 1000; thrust::device_vector<float> V1(N); thrust::device_vector<float> V2(N); thrust::sequence(V1.begin(), V1.end(), 1); thrust::transform(V1.begin(), V1.end(), V2.begin(), thrust::negate<float>()); // V2 is now {-1, -2, -3, ..., -1000}
See also
- Template Parameters
T – is a model of Assignable, and if
x
is an object of typeT
, then-x
must be defined and must have a return type that is convertible toT
.