lin
base.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TYPES_BASE_HPP_
8 #define LIN_CORE_TYPES_BASE_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 #include "dimensions.hpp"
13 #include "mapping.hpp"
14 
15 namespace lin {
16 namespace internal {
17 
39 template <class D>
40 class Base : public Mapping<D>, public Dimensions<D> {
41  static_assert(has_valid_traits<D>::value,
42  "Derived types to Base<...> must have valid traits");
43 
44  public:
49  typedef traits<D> Traits;
50 
51  protected:
52  using Mapping<D>::derived;
53 
54  public:
55  using Mapping<D>::size;
56  using Mapping<D>::eval;
57  using Mapping<D>::operator=;
58  using Mapping<D>::operator();
59 
60  using Dimensions<D>::rows;
61  using Dimensions<D>::cols;
63 
64  constexpr Base() = default;
65  constexpr Base(Base<D> const &) = default;
66  constexpr Base(Base<D> &&) = default;
67  constexpr Base<D> &operator=(Base<D> const &) = default;
68  constexpr Base<D> &operator=(Base<D> &&) = default;
69 
77  inline constexpr typename Traits::elem_t *data() {
78  return derived().data();
79  }
80 
88  inline constexpr typename Traits::elem_t const *data() const {
89  return const_cast<D &>(derived()).data();
90  }
91 
102  constexpr typename Traits::elem_t &operator()(size_t i, size_t j) {
103  LIN_ASSERT(0 <= i && i < rows());
104  LIN_ASSERT(0 <= j && j < cols());
105 
106  return data()[i * cols() + j];
107  }
108 
121  constexpr typename Traits::elem_t &operator()(size_t i) {
122  LIN_ASSERT(0 <= i && i < size());
123 
124  return data()[i];
125  }
126 };
127 } // namespace internal
128 } // namespace lin
129 
130 #endif
Value backed tensor interface with resizing support.
Definition: base.hpp:40
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr size_t size() const
Definition: stream.hpp:90
constexpr size_t cols() const
Definition: dimensions.hpp:60
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Provides read and write access to tensor elements.
Definition: base.hpp:102
constexpr size_t rows() const
Definition: dimensions.hpp:56
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: base.hpp:77
constexpr Traits::elem_t const * data() const
Retrives a constant pointer to the element backing array.
Definition: base.hpp:88
_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
traits< D > Traits
Traits information for this type.
Definition: base.hpp:42
Definition: config.hpp:27
constexpr Traits::elem_t & operator()(size_t i)
Provides read and write access to tensor elements.
Definition: base.hpp:121
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45