lin
const_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_CONST_TENSOR_VIEW_HPP_
8 #define LIN_VIEWS_CONST_TENSOR_VIEW_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
30 template <class D>
31 class ConstTensorView : public ConstBase<D> {
32  static_assert(has_valid_traits<D>::value,
33  "Derived types to ConstTensor<...> must have valid traits");
34 
35  public:
40  typedef traits<D> Traits;
41 
42  private:
43  typename Traits::elem_t const *const elems;
44 
45  protected:
47 
48  public:
49  using ConstBase<D>::rows;
50  using ConstBase<D>::cols;
52  using ConstBase<D>::size;
53  using ConstBase<D>::operator();
54  using ConstBase<D>::eval;
55 
56  constexpr ConstTensorView() = delete;
57  constexpr ConstTensorView(ConstTensorView<D> const &) = default;
58  constexpr ConstTensorView(ConstTensorView<D> &&) = default;
59  constexpr ConstTensorView<D> &operator=(ConstTensorView<D> const &) = default;
60  constexpr ConstTensorView<D> &operator=(ConstTensorView<D> &&) = default;
61 
76  constexpr ConstTensorView(typename Traits::elem_t const *elems)
77  : elems(elems) {
79  }
80 
100  constexpr ConstTensorView(typename Traits::elem_t const *elems, size_t r, size_t c)
101  : elems(elems) {
102  resize(r, c);
103  }
104 
111  constexpr typename Traits::elem_t const *data() const {
112  return elems;
113  }
114 };
115 } // namespace internal
116 } // namespace lin
117 
118 #endif
Value backed, read only tensor interface.
Definition: const_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
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&#39;s element type.
Definition: tensor.hpp:81
Tests if a tensor type&#39;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