CUB  
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Public Types | Public Methods | Friends | List of all members
cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT > Class Template Reference

Detailed description

template< CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
class cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >

A random-access output wrapper for storing array values using a PTX cache-modifier.

Overview
  • CacheModifiedOutputIterator is a random-access output iterator that wraps a native device pointer of type ValueType*. ValueType references are made by writing ValueType values through stores modified by MODIFIER.
  • Can be used to store any data type to memory using PTX cache store modifiers (e.g., "STORE_WB", "STORE_CG", "STORE_CS", "STORE_WT", etc.).
  • Can be constructed, manipulated, and exchanged within and between host and device functions, but can only be dereferenced within device functions.
  • Compatible with Thrust API v1.7 or newer.
Snippet
The code snippet below illustrates the use of CacheModifiedOutputIterator to dereference a device array of doubles using the "wt" PTX load modifier (i.e., write-through to system memory).
#include <cub/cub.cuh> // or equivalently <cub/iterator/cache_modified_output_iterator.cuh>
// Declare, allocate, and initialize a device array
double *d_out; // e.g., [, , , , , , ]
// Create an iterator wrapper
// Within device code:
itr[0] = 8.0;
itr[1] = 66.0;
itr[55] = 24.0;
Usage Considerations
  • Can only be dereferenced within device code
Template Parameters
CacheStoreModifierThe cub::CacheStoreModifier to use when accessing data
ValueTypeThe value type of this iterator
OffsetTThe difference type of this iterator (Default: ptrdiff_t)

Public Types

typedef CacheModifiedOutputIterator self_type
 My own type. More...
 
typedef OffsetT difference_type
 Type to express the result of subtracting one iterator from another. More...
 
typedef void value_type
 The type of the element the iterator can point to. More...
 
typedef void pointer
 The type of a pointer to an element the iterator can point to. More...
 
typedef Reference 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__ CacheModifiedOutputIterator (QualifiedValueType *ptr)
 Constructor. More...
 
__host__ __device__
__forceinline__ self_type 
operator++ (int)
 Postfix increment. More...
 
__host__ __device__
__forceinline__ self_type 
operator++ ()
 Prefix increment. More...
 
__host__ __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 >
__host__ __device__
__forceinline__ reference 
operator[] (Distance n) const
 Array subscript. 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...
 

Friends

std::ostream & operator<< (std::ostream &os, const self_type &itr)
 ostream operator More...
 

Member Typedef Documentation

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
typedef CacheModifiedOutputIterator cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::self_type

My own type.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
typedef OffsetT cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::difference_type

Type to express the result of subtracting one iterator from another.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
typedef void cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::value_type

The type of the element the iterator can point to.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
typedef void cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::pointer

The type of a pointer to an element the iterator can point to.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
typedef Reference cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::reference

The type of a reference to an element the iterator can point to.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
typedef std::random_access_iterator_tag cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::iterator_category

The iterator category.

Constructor & Destructor Documentation

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
template<typename QualifiedValueType >
__host__ __device__ __forceinline__ cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::CacheModifiedOutputIterator ( QualifiedValueType *  ptr)
inline

Constructor.

Parameters
ptrNative pointer to wrap

Member Function Documentation

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
__host__ __device__ __forceinline__ self_type cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator++ ( int  )
inline

Postfix increment.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
__host__ __device__ __forceinline__ self_type cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator++ ( )
inline

Prefix increment.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
__host__ __device__ __forceinline__ reference cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator* ( ) const
inline

Indirection.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
template<typename Distance >
__host__ __device__ __forceinline__ self_type cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator+ ( Distance  n) const
inline

Addition.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
template<typename Distance >
__host__ __device__ __forceinline__ self_type& cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator+= ( Distance  n)
inline

Addition assignment.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
template<typename Distance >
__host__ __device__ __forceinline__ self_type cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator- ( Distance  n) const
inline

Subtraction.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
template<typename Distance >
__host__ __device__ __forceinline__ self_type& cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator-= ( Distance  n)
inline

Subtraction assignment.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
__host__ __device__ __forceinline__ difference_type cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator- ( self_type  other) const
inline

Distance.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
template<typename Distance >
__host__ __device__ __forceinline__ reference cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator[] ( Distance  n) const
inline

Array subscript.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
__host__ __device__ __forceinline__ bool cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator== ( const self_type rhs)
inline

Equal to.

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
__host__ __device__ __forceinline__ bool cub::CacheModifiedOutputIterator< MODIFIER, ValueType, OffsetT >::operator!= ( const self_type rhs)
inline

Not equal to.

Friends And Related Function Documentation

template<CacheStoreModifier MODIFIER, typename ValueType, typename OffsetT = ptrdiff_t>
std::ostream& operator<< ( std::ostream &  os,
const self_type itr 
)
friend

ostream operator


The documentation for this class was generated from the following file: