lin
tensor_stream_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_STREAM_REFERENCE_HPP_
8 #define LIN_REFERENCES_TENSOR_STREAM_REFERENCE_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
35 template <class D, class E>
36 class TensorStreamReference : public Stream<D>, public Dimensions<D> {
37  public:
42  typedef traits<D> Traits;
43 
44  private:
45  Stream<E> const &_stream;
46  size_t const _i;
47  size_t const _j;
48 
49  protected:
50  using Stream<D>::derived;
51 
53 
54  public:
55  using Stream<D>::size;
56  using Stream<D>::eval;
57 
58  using Dimensions<D>::rows;
59  using Dimensions<D>::cols;
60 
61  constexpr TensorStreamReference() = delete;
62  constexpr TensorStreamReference(TensorStreamReference<D, E> const &) = default;
63  constexpr TensorStreamReference(TensorStreamReference<D, E> &&) = default;
64  constexpr TensorStreamReference<D, E> &operator=(TensorStreamReference<D, E> const &) = default;
65  constexpr TensorStreamReference<D, E> &operator=(TensorStreamReference<D, E> &&) = default;
66 
87  constexpr TensorStreamReference(Stream<E> const &stream, size_t i, size_t j)
88  : _stream(stream), _i(i), _j(j) {
89  LIN_ASSERT((i >= 0) && (i + Traits::max_rows <= stream.rows()));
90  LIN_ASSERT((j >= 0) && (j + Traits::max_cols <= stream.cols()));
91 
93  }
94 
119  constexpr TensorStreamReference(Stream<E> const &stream, size_t i, size_t j, size_t r, size_t c)
120  : _stream(stream), _i(i), _j(j) {
121  LIN_ASSERT((i >= 0) && (i + r <= stream.rows()));
122  LIN_ASSERT((j >= 0) && (j + c <= stream.cols()));
123 
124  resize(r, c);
125  }
126 
142  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
143  LIN_ASSERT((i >= 0) && (i < rows()));
144  LIN_ASSERT((j >= 0) && (j < cols()));
145 
146  return _stream(_i + i, _j + j);
147  }
148 
166  constexpr typename Traits::elem_t operator()(size_t i) const {
167  LIN_ASSERT((i >= 0) && (i < size()));
168 
169  return operator()(i / cols(), i % cols());
170  }
171 };
172 } // namespace internal
173 } // namespace lin
174 
175 #endif
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
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 TensorStreamReference(Stream< E > const &stream, 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_stream_reference.hpp:119
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: tensor_stream_reference.hpp:142
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr size_t rows() const
Definition: stream.hpp:76
Generic tensor reference with read only access.
Definition: tensor_stream_reference.hpp:36
static constexpr size_t max_cols
Max column count.
Definition: tensor.hpp:121
constexpr size_t cols() const
Definition: stream.hpp:82
traits< D > Traits
Traits information for this type.
Definition: tensor_stream_reference.hpp:42
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
constexpr Traits::elem_t operator()(size_t i) const
Provides read only access to tensor elements.
Definition: tensor_stream_reference.hpp:166
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45
constexpr TensorStreamReference(Stream< E > const &stream, size_t i, size_t j)
Constructs a new reference with the provided stream and anchor point.
Definition: tensor_stream_reference.hpp:87
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115