7 #ifndef LIN_GENERATORS_STREAM_CONSTANTS_HPP_ 8 #define LIN_GENERATORS_STREAM_CONSTANTS_HPP_ 10 #include "../core.hpp" 34 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
36 public Dimensions<StreamConstants<T, R, C, MR, MC>> {
105 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
110 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
112 static constexpr
size_t rows = R;
113 static constexpr
size_t cols = C;
114 static constexpr
size_t max_rows = MR;
115 static constexpr
size_t max_cols = MC;
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr Traits::elem_t operator()(size_t i) const
Retrieves the requested tensor elements value, which, in this case is a specified constant...
Definition: stream_constants.hpp:98
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
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Retrieves the requested tensor elements value, which, in this case is a specified constant...
Definition: stream_constants.hpp:84
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr StreamConstants< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
constexpr StreamConstants(T t, size_t r, size_t c)
Constructs a tensor constants stream of the requested size and value.
Definition: stream_constants.hpp:72
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Tensor stream where all element accesses return the same constant value.
Definition: stream_constants.hpp:35
constexpr size_t rows() const
Definition: stream.hpp:76
Traits::elem_t const t
Constant value returned by element accesses.
Definition: stream_constants.hpp:47
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
traits< StreamConstants< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: stream_constants.hpp:42
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