7 #ifndef LIN_REFERENCES_TENSOR_STREAM_REFERENCE_HPP_ 8 #define LIN_REFERENCES_TENSOR_STREAM_REFERENCE_HPP_ 10 #include "../core.hpp" 35 template <
class D,
class E>
88 : _stream(stream), _i(i), _j(j) {
120 : _stream(stream), _i(i), _j(j) {
146 return _stream(_i + i, _j + j);
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'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'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