lin
tensor_mapping_reference.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_REFERENCES_TENSOR_MAPPING_REFERENCE_HPP_
8 #define LIN_REFERENCES_TENSOR_MAPPING_REFERENCE_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
35 template <class D, class E>
36 class TensorMappingReference : public Mapping<D>, public Dimensions<D> {
37  public:
42  typedef traits<D> Traits;
43 
44  private:
45  Mapping<E> &_mapping;
46  size_t const _i;
47  size_t const _j;
48 
49  protected:
50  using Mapping<D>::derived;
51 
53 
54  public:
55  using Mapping<D>::size;
56  using Mapping<D>::operator=;
57  using Mapping<D>::operator();
58  using Mapping<D>::eval;
59 
60  using Dimensions<D>::rows;
61  using Dimensions<D>::cols;
62 
63  constexpr TensorMappingReference() = delete;
64  constexpr TensorMappingReference(TensorMappingReference<D, E> const &) = default;
66  constexpr TensorMappingReference<D, E> &operator=(TensorMappingReference<D, E> const &) = default;
67  constexpr TensorMappingReference<D, E> &operator=(TensorMappingReference<D, E> &&) = default;
68 
89  constexpr TensorMappingReference(Mapping<E> &mapping, size_t i, size_t j)
90  : _mapping(mapping), _i(i), _j(j) {
91  LIN_ASSERT((i >= 0) && (i + Traits::max_rows <= mapping.rows()));
92  LIN_ASSERT((j >= 0) && (j + Traits::max_cols <= mapping.cols()));
93 
95  }
96 
121  constexpr TensorMappingReference(Mapping<E> &mapping, size_t i, size_t j, size_t r, size_t c)
122  : _mapping(mapping), _i(i), _j(j) {
123  LIN_ASSERT((i >= 0) && (i + r <= mapping.rows()));
124  LIN_ASSERT((j >= 0) && (j + c <= mapping.cols()));
125 
126  resize(r, c);
127  }
128 
139  constexpr typename Traits::elem_t &operator()(size_t i, size_t j) {
140  LIN_ASSERT((i >= 0) && (i < rows()));
141  LIN_ASSERT((j >= 0) && (j < cols()));
142 
143  return _mapping(_i + i, _j + j);
144  }
145 
158  constexpr typename Traits::elem_t &operator()(size_t i) {
159  LIN_ASSERT((i >= 0) && (i < size()));
160 
161  return operator()(i / cols(), i % cols());
162  }
163 };
164 } // namespace internal
165 } // namespace lin
166 
167 #endif
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr size_t size() const
Definition: stream.hpp:90
constexpr void resize(size_t r, size_t c)
Resizes a tensor&#39;s dimensions.
Definition: dimensions.hpp:75
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Provides read and write access to tensor elements.
Definition: tensor_mapping_reference.hpp:139
constexpr TensorMappingReference(Mapping< E > &mapping, size_t i, size_t j)
Constructs a new reference with the provided mapping and anchor point.
Definition: tensor_mapping_reference.hpp:89
constexpr TensorMappingReference(Mapping< E > &mapping, size_t i, size_t j, size_t r, size_t c)
Constructs a new reference with the provided mapping, anchor point, and dimensions.
Definition: tensor_mapping_reference.hpp:121
constexpr size_t cols() const
Definition: dimensions.hpp:60
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr size_t rows() const
Definition: dimensions.hpp:56
traits< D > Traits
Traits information for this type.
Definition: tensor_mapping_reference.hpp:42
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr Traits::elem_t & operator()(size_t i)
Provides read and write access to tensor elements.
Definition: tensor_mapping_reference.hpp:158
Generic tensor reference with read and write access.
Definition: tensor_mapping_reference.hpp:36
constexpr size_t rows() const
Definition: stream.hpp:76
static constexpr size_t max_cols
Max column count.
Definition: tensor.hpp:121
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115