CUB
|
A random-access input wrapper for dereferencing array values using a PTX cache load modifier.
ValueType*
. ValueType
references are made by reading ValueType
values through loads modified by MODIFIER
.CacheModifiedInputIterator
to dereference a device array of double using the "ldg" PTX load modifier (i.e., load values through texture cache). CacheLoadModifier | The cub::CacheLoadModifier to use when accessing data |
ValueType | The value type of this iterator |
OffsetT | The difference type of this iterator (Default: ptrdiff_t ) |
Public Types | |
typedef CacheModifiedInputIterator | self_type |
My own type. More... | |
typedef OffsetT | difference_type |
Type to express the result of subtracting one iterator from another. More... | |
typedef ValueType | value_type |
The type of the element the iterator can point to. More... | |
typedef ValueType * | pointer |
The type of a pointer to an element the iterator can point to. More... | |
typedef ValueType | reference |
The type of a reference to an element the iterator can point to. More... | |
typedef std::random_access_iterator_tag | iterator_category |
The iterator category. More... | |
Public Methods | |
template<typename QualifiedValueType > | |
__host__ __device__ __forceinline__ | CacheModifiedInputIterator (QualifiedValueType *ptr) |
Constructor. More... | |
__host__ __device__ __forceinline__ self_type | operator++ (int) |
Postfix increment. More... | |
__host__ __device__ __forceinline__ self_type | operator++ () |
Prefix increment. More... | |
__device__ __forceinline__ reference | operator* () const |
Indirection. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type | operator+ (Distance n) const |
Addition. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type & | operator+= (Distance n) |
Addition assignment. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type | operator- (Distance n) const |
Subtraction. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type & | operator-= (Distance n) |
Subtraction assignment. More... | |
__host__ __device__ __forceinline__ difference_type | operator- (self_type other) const |
Distance. More... | |
template<typename Distance > | |
__device__ __forceinline__ reference | operator[] (Distance n) const |
Array subscript. More... | |
__device__ __forceinline__ pointer | operator-> () |
Structure dereference. More... | |
__host__ __device__ __forceinline__ bool | operator== (const self_type &rhs) |
Equal to. More... | |
__host__ __device__ __forceinline__ bool | operator!= (const self_type &rhs) |
Not equal to. More... | |
Public Members | |
ValueType * | ptr |
Wrapped native pointer. More... | |
Friends | |
std::ostream & | operator<< (std::ostream &os, const self_type &) |
ostream operator More... | |
typedef CacheModifiedInputIterator cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::self_type |
My own type.
typedef OffsetT cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::difference_type |
Type to express the result of subtracting one iterator from another.
typedef ValueType cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::value_type |
The type of the element the iterator can point to.
typedef ValueType* cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::pointer |
The type of a pointer to an element the iterator can point to.
typedef ValueType cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::reference |
The type of a reference to an element the iterator can point to.
typedef std::random_access_iterator_tag cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::iterator_category |
The iterator category.
|
inline |
Constructor.
ptr | Native pointer to wrap |
|
inline |
Postfix increment.
|
inline |
Prefix increment.
|
inline |
Indirection.
|
inline |
Addition.
|
inline |
Addition assignment.
|
inline |
Subtraction.
|
inline |
Subtraction assignment.
|
inline |
Distance.
|
inline |
Array subscript.
|
inline |
Structure dereference.
|
inline |
Equal to.
|
inline |
Not equal to.
|
friend |
ostream operator
ValueType* cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::ptr |
Wrapped native pointer.