7 #ifndef LIN_GENERATORS_STREAM_IDENTITY_HPP_ 8 #define LIN_GENERATORS_STREAM_IDENTITY_HPP_ 10 #include "../core.hpp" 32 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
34 public Dimensions<StreamIdentity<T, R, C, MR, MC>> {
36 "StreamIdentity<...> must have square traits");
97 return (*
this)(i /
cols(), i %
cols());
101 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
106 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
108 static constexpr
size_t rows = R;
109 static constexpr
size_t cols = C;
110 static constexpr
size_t max_rows = MR;
111 static constexpr
size_t max_cols = MC;
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
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 StreamIdentity< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Tests if a tensor type is "square".
Definition: tensor.hpp:389
constexpr size_t rows() const
Definition: stream.hpp:76
traits< StreamIdentity< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: stream_identity.hpp:36
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Retrieves the requested tensor elements value, which, in this case is one when on the diagonal and ze...
Definition: stream_identity.hpp:80
Tensor stream where all element accesses specify an identity matrix.
Definition: stream_identity.hpp:33
Definition: config.hpp:27
constexpr Traits::elem_t operator()(size_t i) const
Retrieves the requested tensor elements value, which, in this case is one when on the diagonal and ze...
Definition: stream_identity.hpp:94
constexpr StreamIdentity(size_t r, size_t c)
Constructs a tensor stream that specifies the identity matrix.
Definition: stream_identity.hpp:66
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45
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