7 #ifndef LIN_VIEWS_CONST_TENSOR_VIEW_HPP_ 8 #define LIN_VIEWS_CONST_TENSOR_VIEW_HPP_ 10 #include "../core.hpp" 33 "Derived types to ConstTensor<...> must have valid traits");
Value backed, read only tensor interface.
Definition: const_base.hpp:40
constexpr void resize(size_t r, size_t c)
Resizes a tensor's dimensions.
Definition: dimensions.hpp:75
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
Member pointer backed constant tensor.
Definition: const_tensor_view.hpp:31
constexpr ConstTensorView(typename Traits::elem_t const *elems)
Constructs a new constant tensor tensor view with the provided backing array.
Definition: const_tensor_view.hpp:76
traits< D > Traits
Traits information for this type.
Definition: const_tensor_view.hpp:33
static constexpr size_t max_cols
Max column count.
Definition: tensor.hpp:121
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Tests if a tensor type's traits are valid.
Definition: tensor.hpp:326
constexpr ConstTensorView(typename Traits::elem_t const *elems, size_t r, size_t c)
Constructs a new constant tensor tensor view with the provided backing array and requested dimensions...
Definition: const_tensor_view.hpp:100
Definition: config.hpp:27
constexpr Traits::elem_t const * data() const
Retrives a constant pointer to the element backing array.
Definition: const_tensor_view.hpp:111
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115