7 #ifndef LIN_CORE_OPERATIONS_STREAM_TRANSPOSE_HPP_ 8 #define LIN_CORE_OPERATIONS_STREAM_TRANSPOSE_HPP_ 57 constexpr
size_t rows()
const {
63 constexpr
size_t cols()
const {
92 return (*
this)(i /
cols(), i %
cols());
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr size_t size() const
Definition: stream.hpp:90
traits< StreamTranspose< C > > Traits
Traits information for this type.
Definition: stream_transpose.hpp:33
Provides a tensor type's element type.
Definition: tensor.hpp:28
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr StreamTranspose< C > & derived()
Definition: stream.hpp:57
constexpr StreamTranspose(Stream< C > const &c)
Constructs a proxy to a tensor transpose operation.
Definition: stream_transpose.hpp:52
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Lazily evaluates the requested tensor element.
Definition: stream_transpose.hpp:76
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr size_t cols() const
Definition: stream_transpose.hpp:63
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
Proxy to a lazily evalutated transpose operation.
Definition: stream_transpose.hpp:22
constexpr Traits::elem_t operator()(size_t i) const
Lazily evaluates the requested tensor element.
Definition: stream_transpose.hpp:91
Stream< C > const & c
Stream reference.
Definition: stream_transpose.hpp:26
constexpr size_t rows() const
Definition: stream_transpose.hpp:57
Provides a specific tensor type's compile time dimensions.
Definition: tensor.hpp:60
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157