7 #include "../config.hpp" 8 #include "../traits.hpp" 9 #include "../types/stream.hpp" 11 #ifndef LIN_CORE_OPERATIONS_STREAM_MULTIPLY_HPP_ 12 #define LIN_CORE_OPERATIONS_STREAM_MULTIPLY_HPP_ 17 template <
class C,
class D,
typename =
void>
20 template <
class C,
class D>
22 is_detected<multiply::template expression, _elem_t<C>, _elem_t<D>>::value &&
23 (_dims<C>::cols == _dims<D>::rows) &&
24 (_dims<C>::max_cols == _dims<D>::max_rows)
25 )>> : std::true_type { };
36 template <
class C,
class D>
79 constexpr
size_t rows()
const {
85 constexpr
size_t cols()
const {
103 for (
size_t k = 1; k < c.
cols(); k++) x += c(i, k) * d(k, j);
122 return (*
this)(i / cols(), i % cols());
126 template <
class C,
class D>
128 typedef typename multiply::template expression<
133 template <
class C,
class D>
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
Definition: stream_multiply.hpp:18
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
traits< StreamMultiply< C, D > > Traits
Traits information for this type.
Definition: stream_multiply.hpp:52
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr size_t cols() const
Definition: stream_multiply.hpp:85
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr Traits::elem_t operator()(size_t i) const
Lazily evaluates the requested tensor element.
Definition: stream_multiply.hpp:121
Stream< C > const & c
Tensor stream.
Definition: stream_multiply.hpp:41
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Proxy to a lazily evalutated tensor multiplication operation.
Definition: stream_multiply.hpp:37
Definition: config.hpp:27
constexpr StreamMultiply(Stream< C > const &c, Stream< D > const &d)
Constructs a proxy to a tensor multiplication operation.
Definition: stream_multiply.hpp:72
constexpr size_t rows() const
Definition: stream_multiply.hpp:79
Stream< D > const & d
Tensor stream.
Definition: stream_multiply.hpp:45
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Lazily evaluates the requested tensor element.
Definition: stream_multiply.hpp:101
Provides a specific tensor type's compile time dimensions.
Definition: tensor.hpp:60