7 #ifndef LIN_CORE_TYPES_TENSOR_HPP_ 8 #define LIN_CORE_TYPES_TENSOR_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 14 #include <initializer_list> 40 "Derived types to Tensor<...> must have valid traits");
87 constexpr
Tensor(
size_t r,
size_t c) {
104 template <
typename T>
105 constexpr
Tensor(std::initializer_list<T>
const &list) {
123 template <
typename T>
124 constexpr
Tensor(
size_t r,
size_t c, std::initializer_list<T>
const &list) {
Value backed tensor interface with resizing support.
Definition: base.hpp:40
constexpr void resize(size_t r, size_t c)
Resizes a tensor's dimensions.
Definition: dimensions.hpp:75
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: tensor.hpp:155
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
constexpr Tensor(size_t r, size_t c, std::initializer_list< T > const &list)
Constructs a tensor with elements initialized from an initializer list and the requested dimensions...
Definition: tensor.hpp:124
traits< D > Traits
Traits information for this type.
Definition: tensor.hpp:40
constexpr Tensor()
Constructs a new tensor with zeros initialized elements and the largest allowable dimensions...
Definition: tensor.hpp:75
constexpr Tensor(size_t r, size_t c)
Constructs a tensor with zeros initialized elements and the requested dimensions. ...
Definition: tensor.hpp:87
Member array backed tensor.
Definition: tensor.hpp:38
constexpr size_t rows() const
Definition: stream.hpp:76
static constexpr size_t max_cols
Max column count.
Definition: tensor.hpp:121
constexpr size_t cols() const
Definition: stream.hpp:82
constexpr Tensor(std::initializer_list< T > const &list)
Constructs a tensor with elements initialized from an initializer list.
Definition: tensor.hpp:105
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
static constexpr size_t max_size
Max total element count.
Definition: tensor.hpp:127
constexpr Tensor(Stream< C > const &s)
Constructs a tensor by copying in dimensions and elements from another tensor stream.
Definition: tensor.hpp:143
Tests if a tensor type's traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115