lin
stream_multiply.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #include "../config.hpp"
8 #include "../traits.hpp"
9 #include "../types/stream.hpp"
10 
11 #ifndef LIN_CORE_OPERATIONS_STREAM_MULTIPLY_HPP_
12 #define LIN_CORE_OPERATIONS_STREAM_MULTIPLY_HPP_
13 
14 namespace lin {
15 namespace internal {
16 
17 template <class C, class D, typename = void>
18 struct can_multiply : std::false_type { };
19 
20 template <class C, class D>
21 struct can_multiply<C, D, std::enable_if_t<(
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 { };
26 
36 template <class C, class D>
37 class StreamMultiply : public Stream<StreamMultiply<C, D>> {
38  private:
41  Stream<C> const &c;
42 
45  Stream<D> const &d;
46 
47  public:
53 
54  protected:
55  using Stream<StreamMultiply<C, D>>::derived;
56 
57  public:
58  using Stream<StreamMultiply<C, D>>::size;
59  using Stream<StreamMultiply<C, D>>::eval;
60 
61  constexpr StreamMultiply() = delete;
62  constexpr StreamMultiply(StreamMultiply<C, D> const &) = default;
63  constexpr StreamMultiply(StreamMultiply<C, D> &&) = default;
64  constexpr StreamMultiply<C, D> &operator=(StreamMultiply<C, D> const &) = default;
65  constexpr StreamMultiply<C, D> &operator=(StreamMultiply<C, D> &&) = default;
66 
72  constexpr StreamMultiply(Stream<C> const &c, Stream<D> const &d)
73  : c(c), d(d) {
74  LIN_ASSERT(c.cols() == d.rows());
75  }
76 
79  constexpr size_t rows() const {
80  return c.rows();
81  }
82 
85  constexpr size_t cols() const {
86  return d.cols();
87  }
88 
101  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
102  typename Traits::elem_t x = c(i, 0) * d(0, j);
103  for (size_t k = 1; k < c.cols(); k++) x += c(i, k) * d(k, j);
104  return x;
105  }
106 
121  constexpr typename Traits::elem_t operator()(size_t i) const {
122  return (*this)(i / cols(), i % cols());
123  }
124 };
125 
126 template <class C, class D>
127 struct _elem<StreamMultiply<C, D>> {
128  typedef typename multiply::template expression<
129  typename _elem<C>::type, typename _elem<D>::type
130  > type;
131 };
132 
133 template <class C, class D>
134 struct _dims<StreamMultiply<C, D>> {
135  static constexpr size_t rows = _dims<C>::rows;
136  static constexpr size_t cols = _dims<D>::cols;
137  static constexpr size_t max_rows = _dims<C>::max_rows;
138  static constexpr size_t max_cols = _dims<D>::max_cols;
139 };
140 } // namespace internal
141 } // namespace lin
142 
143 #endif
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
Definition: stream_multiply.hpp:18
Provides a tensor type&#39;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&#39;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&#39;s compile time dimensions.
Definition: tensor.hpp:60