CUTLASS
CUDA Templates for Linear Algebra Subroutines and Solvers
|
#include <matrix.h>
Public Types | |
using | Index = int32_t |
Index type used for coordinates. More... | |
using | LongIndex = int64_t |
Long index type used for offsets. More... | |
using | TensorCoord = MatrixCoord |
Logical coordinate. More... | |
using | Stride = Coord< kStrideRank, Index > |
Stride vector. More... | |
Public Member Functions | |
CUTLASS_HOST_DEVICE | GeneralMatrix () |
Ctor. More... | |
CUTLASS_HOST_DEVICE | GeneralMatrix (MatrixLayout layout_id, Index ldm, Index interleave) |
Ctor. More... | |
CUTLASS_HOST_DEVICE LongIndex | operator() (MatrixCoord const &coord) const |
CUTLASS_HOST_DEVICE Stride | stride () const |
Returns the stride of the layout. More... | |
CUTLASS_HOST_DEVICE MatrixLayout | layout_id () const |
CUTLASS_HOST_DEVICE Stride & | stride () |
Returns the stride of the layout. More... | |
CUTLASS_HOST_DEVICE MatrixLayout & | layout_id () |
CUTLASS_HOST_DEVICE Index | stride (int idx) const |
Returns the stride of the layout. More... | |
CUTLASS_HOST_DEVICE Index & | stride (int idx) |
Returns the stride of the layout. More... | |
CUTLASS_HOST_DEVICE LongIndex | capacity (MatrixCoord const &extent) const |
Compute the number of contiguous elements needed to store a tensor with the given size. More... | |
Static Public Member Functions | |
static CUTLASS_HOST_DEVICE GeneralMatrix | packed (MatrixCoord const &extent, MatrixLayout layout_id=MatrixLayout::kColumnMajor, Index interleave=1) |
Helper returns a layout to a tightly packed tensor. More... | |
Static Public Attributes | |
static int const | kRank = 2 |
Logical rank of tensor. More... | |
static int const | kStrideRank = 2 |
Rank of stride vector. More... | |
using cutlass::layout::GeneralMatrix::Index = int32_t |
using cutlass::layout::GeneralMatrix::LongIndex = int64_t |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Returns the offset of a coordinate in linear memory. Assumes coordinate has convention (row, column)
|
inlinestatic |
|
inline |
|
inline |
|
inline |
|
inline |
|
static |
|
static |