lin
tensor_view.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_VIEWS_TENSOR_VIEW_HPP_
8 #define LIN_VIEWS_TENSOR_VIEW_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
30 template <class D>
31 class TensorView : public Base<D> {
32  static_assert(has_valid_traits<D>::value,
33  "Derived types to Tensor<...> must have valid traits");
34 
35  public:
40  typedef traits<D> Traits;
41 
42  private:
43  typename Traits::elem_t *const elems;
44 
45  protected:
46  using Base<D>::derived;
47 
48  public:
49  using Base<D>::rows;
50  using Base<D>::cols;
51  using Base<D>::resize;
52  using Base<D>::size;
53  using Base<D>::operator=;
54  using Base<D>::operator();
55  using Base<D>::data;
56  using Base<D>::eval;
57 
58  constexpr TensorView() = delete;
59  constexpr TensorView(TensorView<D> const &) = default;
60  constexpr TensorView(TensorView<D> &&) = default;
61  constexpr TensorView<D> &operator=(TensorView<D> const &) = default;
62  constexpr TensorView<D> &operator=(TensorView<D> &&) = default;
63 
78  constexpr TensorView(typename Traits::elem_t *elems)
79  : elems(elems) {
81  }
82 
102  constexpr TensorView(typename Traits::elem_t *elems, size_t r, size_t c)
103  : elems(elems) {
104  resize(r, c);
105  }
106 
113  constexpr typename Traits::elem_t *data() {
114  return elems;
115  }
116 };
117 } // namespace internal
118 } // namespace lin
119 
120 #endif
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&#39;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&#39;s element type.
Definition: tensor.hpp:81
Tests if a tensor type&#39;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