Structure to define the dimensions of a tensor. More...
Public Member Functions | |
__attribute__ ((deprecated)) DimensionType type[MAX_DIMS] | |
The type of each dimension, provided for backwards compatibility. More... | |
Public Attributes | |
int32_t | nbDims |
The number of dimensions. More... | |
int32_t | d [MAX_DIMS] |
The extent of each dimension. More... | |
Static Public Attributes | |
static const int32_t | MAX_DIMS = 8 |
The maximum number of dimensions supported for a tensor. More... | |
Structure to define the dimensions of a tensor.
TensorRT can also return an invalid dims structure. This structure is represented by nbDims == -1 and d[i] == 0 for all d.
TensorRT can also return an "unknown rank" dims structure. This structure is represented by nbDims == -1 and d[i] == -1 for all d.
nvinfer1::Dims::__attribute__ | ( | (deprecated) | ) |
The type of each dimension, provided for backwards compatibility.
and will be removed in TensorRT 8.0.
|
static |
The maximum number of dimensions supported for a tensor.
int32_t nvinfer1::Dims::nbDims |
The number of dimensions.
int32_t nvinfer1::Dims::d[MAX_DIMS] |
The extent of each dimension.