lin
const_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_CONST_BASE_HPP_
8 #define LIN_CORE_TYPES_CONST_BASE_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 #include "dimensions.hpp"
13 #include "stream.hpp"
14 
15 namespace lin {
16 namespace internal {
17 
39 template <class D>
40 class ConstBase : public Stream<D>, public Dimensions<D> {
41  static_assert(has_valid_traits<D>::value,
42  "Derived types to ConstBase<...> must have valid traits");
43 
44  public:
49  typedef traits<D> Traits;
50 
51  protected:
52  using Stream<D>::derived;
53 
54  public:
55  using Stream<D>::size;
56  using Stream<D>::eval;
57  using Stream<D>::operator();
58 
59  using Dimensions<D>::rows;
60  using Dimensions<D>::cols;
62 
63  constexpr ConstBase() = default;
64  constexpr ConstBase(ConstBase<D> const &) = default;
65  constexpr ConstBase(ConstBase<D> &&) = default;
66  constexpr ConstBase<D> &operator=(ConstBase<D> const &) = default;
67  constexpr ConstBase<D> &operator=(ConstBase<D> &&) = default;
68 
76  inline constexpr typename Traits::elem_t const *data() const {
77  return derived().data();
78  }
79 
90  constexpr typename Traits::elem_t const &operator()(size_t i, size_t j) const {
91  LIN_ASSERT(0 <= i && i < rows());
92  LIN_ASSERT(0 <= j && j < cols());
93 
94  return data()[i * cols() + j];
95  }
96 
109  constexpr typename Traits::elem_t const &operator()(size_t i) {
110  LIN_ASSERT(0 <= i && i < size());
111 
112  return data()[i];
113  }
114 };
115 } // namespace internal
116 } // namespace lin
117 
118 #endif
Value backed, read only tensor interface.
Definition: const_base.hpp:40
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr size_t size() const
Definition: stream.hpp:90
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
traits< D > Traits
Traits information for this type.
Definition: const_base.hpp:42
constexpr Traits::elem_t const * data() const
Retrives a constant pointer to the element backing array.
Definition: const_base.hpp:76
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr Traits::elem_t const & operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: const_base.hpp:90
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr Traits::elem_t const & operator()(size_t i)
Provides read only access to tensor elements.
Definition: const_base.hpp:109
constexpr size_t cols() const
Definition: stream.hpp:82
_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
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45