CUSP
Loading...
Searching...
No Matches
cusp::not_equal_pair_functor< T > Struct Template Reference

#include <functional.h>

Inheritance diagram for cusp::not_equal_pair_functor< T >:

Detailed description

template<typename T>
struct cusp::not_equal_pair_functor< T >

not_equal_pair_functor is a function object that compares 2 element tuple entries.

Parameters
Tis a model of Assignable, and if x is an object of type ::cuda::std::tuple<T,T>, then x=c must be defined and must have a return type that is convertible to T.
Overview
not_equal_pair_functor is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class not_equal_pair_functor<T>, and x is an object of class ::cuda::std::tuple<T,T>, then f(x) returns ::cuda::std::get<0>(x) != ::cuda::std::get<1>(x).
Example
#include <cusp/array1d.h>
#include <cusp/print.h>
int main()
{
// create an array with 5 entries all containing 2
// create an array with 5 entries from -2 to 2
cusp::counting_array<float> counting(5, -2);
// allocate size of transformed output array
// compute output vector as transform of tens
thrust::transform(thrust::make_zip_iterator(::cuda::std::make_tuple(counting.begin(), twos.begin())),
thrust::make_zip_iterator(::cuda::std::make_tuple(counting.begin(), twos.begin())) + v.size(),
v.begin(),
// v = [1, 1, 1, 0, 1]
}
1D array of elements that may reside in "host" or "device" memory space
The array1d class is a 1D vector container that may contain elements stored in "host" or "device" mem...
Definition array1d.h:99
Specialized array1d_view wrapping thrust::constant_iterator.
Definition array1d.h:616
Specialized array1d_view wrapping thrust::counting_iterator.
Definition array1d.h:566
Defines templated convenience functors analogous to what is found in thrust's functional.
void print(const Printable &p)
print a textual representation of an object
Print textual representation of an object.
not_equal_pair_functor is a function object that compares 2 element tuple entries.
Definition functional.h:937

Definition at line 937 of file functional.h.