7 #ifndef LIN_VIEWS_TENSOR_VIEW_HPP_ 8 #define LIN_VIEWS_TENSOR_VIEW_HPP_ 10 #include "../core.hpp" 33 "Derived types to Tensor<...> must have valid traits");
traits< D > Traits
Traits information for this type.
Definition: tensor_view.hpp:33
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
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr TensorView(typename Traits::elem_t *elems)
Constructs a new tensor tensor view with the provided backing array.
Definition: tensor_view.hpp:78
Member pointer backed tensor.
Definition: tensor_view.hpp:31
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: tensor_view.hpp:113
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
Definition: config.hpp:27
constexpr TensorView(typename Traits::elem_t *elems, size_t r, size_t c)
Constructs a new tensor tensor view with the provided backing array and requested dimensions...
Definition: tensor_view.hpp:102
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115