A random-access input wrapper for dereferencing array values using a PTX cache load modifier. More...
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.CacheModifiedInputIteratorTto 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) |
Definition at line 107 of file cache_modified_input_iterator.cuh.
Public Types | |
| typedef CacheModifiedInputIterator | self_type |
| My own type. | |
| typedef OffsetT | difference_type |
| Type to express the result of subtracting one iterator from another. | |
| typedef ValueType | value_type |
| The type of the element the iterator can point to. | |
| typedef ValueType * | pointer |
| The type of a pointer to an element the iterator can point to. | |
| typedef ValueType | reference |
| The type of a reference to an element the iterator can point to. | |
| typedef std::random_access_iterator_tag | iterator_category |
| The iterator category. | |
Public Member Functions | |
| template<typename QualifiedValueType > | |
| __host__ __device__ __forceinline__ | CacheModifiedInputIterator (QualifiedValueType *ptr) |
| Constructor. | |
| __host__ __device__ __forceinline__ self_type | operator++ (int) |
| Postfix increment. | |
| __host__ __device__ __forceinline__ self_type | operator++ () |
| Prefix increment. | |
| __device__ __forceinline__ reference | operator* () const |
| Indirection. | |
| template<typename Distance > | |
| __host__ __device__ __forceinline__ self_type | operator+ (Distance n) const |
| Addition. | |
| template<typename Distance > | |
| __host__ __device__ __forceinline__ self_type & | operator+= (Distance n) |
| Addition assignment. | |
| template<typename Distance > | |
| __host__ __device__ __forceinline__ self_type | operator- (Distance n) const |
| Subtraction. | |
| template<typename Distance > | |
| __host__ __device__ __forceinline__ self_type & | operator-= (Distance n) |
| Subtraction assignment. | |
| __host__ __device__ __forceinline__ difference_type | operator- (self_type other) const |
| Distance. | |
| template<typename Distance > | |
| __device__ __forceinline__ reference | operator[] (Distance n) const |
| Array subscript. | |
| __device__ __forceinline__ pointer | operator-> () |
| Structure dereference. | |
| __host__ __device__ __forceinline__ bool | operator== (const self_type &rhs) |
| Equal to. | |
| __host__ __device__ __forceinline__ bool | operator!= (const self_type &rhs) |
| Not equal to. | |
Data Fields | |
| ValueType * | ptr |
| Wrapped native pointer. | |
Friends | |
| std::ostream & | operator<< (std::ostream &os, const self_type &) |
| ostream operator | |
| typedef OffsetT cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::difference_type |
Type to express the result of subtracting one iterator from another.
Definition at line 113 of file cache_modified_input_iterator.cuh.
| typedef std::random_access_iterator_tag cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::iterator_category |
The iterator category.
Definition at line 127 of file cache_modified_input_iterator.cuh.
| typedef ValueType* cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::pointer |
The type of a pointer to an element the iterator can point to.
Definition at line 115 of file cache_modified_input_iterator.cuh.
| typedef ValueType cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::reference |
The type of a reference to an element the iterator can point to.
Definition at line 116 of file cache_modified_input_iterator.cuh.
| typedef CacheModifiedInputIterator cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::self_type |
My own type.
Definition at line 112 of file cache_modified_input_iterator.cuh.
| typedef ValueType cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::value_type |
The type of the element the iterator can point to.
Definition at line 114 of file cache_modified_input_iterator.cuh.
|
inline |
Constructor.
| ptr | Native pointer to wrap |
Definition at line 138 of file cache_modified_input_iterator.cuh.
|
inline |
Not equal to.
Definition at line 223 of file cache_modified_input_iterator.cuh.
|
inline |
Indirection.
Definition at line 160 of file cache_modified_input_iterator.cuh.
|
inline |
Addition.
Definition at line 167 of file cache_modified_input_iterator.cuh.
|
inline |
Prefix increment.
Definition at line 153 of file cache_modified_input_iterator.cuh.
|
inline |
Postfix increment.
Definition at line 145 of file cache_modified_input_iterator.cuh.
|
inline |
Addition assignment.
Definition at line 175 of file cache_modified_input_iterator.cuh.
|
inline |
Subtraction.
Definition at line 183 of file cache_modified_input_iterator.cuh.
|
inline |
Distance.
Definition at line 198 of file cache_modified_input_iterator.cuh.
|
inline |
Subtraction assignment.
Definition at line 191 of file cache_modified_input_iterator.cuh.
|
inline |
Structure dereference.
Definition at line 211 of file cache_modified_input_iterator.cuh.
|
inline |
Equal to.
Definition at line 217 of file cache_modified_input_iterator.cuh.
|
inline |
Array subscript.
Definition at line 205 of file cache_modified_input_iterator.cuh.
|
friend |
ostream operator
Definition at line 229 of file cache_modified_input_iterator.cuh.
| ValueType* cub::CacheModifiedInputIterator< MODIFIER, ValueType, OffsetT >::ptr |
Wrapped native pointer.
Definition at line 134 of file cache_modified_input_iterator.cuh.