Cutlass
CUDA Templates for Linear Algebra Subroutines and Solvers
Classes
Tile Store Iterator Concept

Classes

struct  cutlass::TileStoreIterator< Traits_, Scalar_, Advance_, MemorySpace, Index_, FragmentElement_, FragmentElementType_, Skew_ >
 An iterator implementing Tile Store Iterator Concept for storing a tile to memory. More...
 

Detailed Description

Tile Store Iterator Concept enables storing a tile to addressable memory

Tile Store Iterator Concept
Types satisfying Tile Load Iterator Concept define the following members
  • PredicateVector - a Predicate Vector Concept with sufficient predicate storage for each access implied by the tile traits
  • Fragment - the destination fragment type satisfying Fragment Concept
  • initialize_predicates(pred_it, bounds, block_offset) - function initializing a predicate vector according to externally specified bounds
  • store_post_increment(fragment, pred_it) - a method that stores a fragment and increments the iterator to the next tile, guarded by a Predicate Iterator Concept
  • store_post_increment(fragment) - a method that stores a fragment and increments the iterator to the next tile
  • store(fragment, pred_it) - a const method that stores a fragment, guarded by a Predicate Iterator Concept
  • store(fragment) - a method that loads a fragment