Tensor
A C++ expression template library for computations on N dimensional tensors
|
Container for tensor data depending on if the tensor is static (dimension sizes, and hence the total number of elements, are known at compile time – uses std::array) or dynamic (dimension sizes are not known at compile time – uses std::vector). More...
#include <tensor_container.hpp>
Container for tensor data depending on if the tensor is static (dimension sizes, and hence the total number of elements, are known at compile time – uses std::array) or dynamic (dimension sizes are not known at compile time – uses std::vector).
Dtype | The type of data used by the tensor |
Sizes | The sizes of the dimensions (optional) |