lin
stream_element_wise_operator.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_STREAM_ELEMENT_WISE_OPERATOR_HPP_
8 #define LIN_CORE_STREAM_ELEMENT_WISE_OPERATOR_HPP_
9 
10 #include "../config.hpp"
11 #include "../types/stream.hpp"
12 
13 #include <tuple>
14 #include <type_traits>
15 #include <utility>
16 
17 namespace lin {
18 namespace internal {
19 
29 template <class F, class... Cs>
30 class StreamElementWiseOperator : public Stream<StreamElementWiseOperator<F, Cs...>> {
31  template <class G, class... Ds>
33  is_detected<G::template expression, _elem_t<Ds>...>,
34  have_same_dimensions<Ds...>
35  > { };
36 
37  static_assert(sizeof...(Cs) > 0,
38  "Arguments pack to StreamElementWiseOperator<...> must contain at least one argument");
40  "Invalid StreamElementWiseOperator<...> parameters");
41 
42  private:
45  F const f;
46 
49  std::tuple<Stream<Cs> const &...> const cs;
50 
51  public:
57 
58  private:
59  template <typename T, T... S>
60  inline constexpr typename Traits::elem_t apply(size_t i, size_t j, std::integer_sequence<T, S...>) const {
61  return f(std::get<S>(cs)(i, j)...);
62  }
63 
64  template <typename T, T... S>
65  inline constexpr typename Traits::elem_t apply(size_t i, std::integer_sequence<T, S...>) const {
66  return f(std::get<S>(cs)(i)...);
67  }
68 
69  protected:
71 
72  public:
73  using Stream<StreamElementWiseOperator<F, Cs...>>::size;
74  using Stream<StreamElementWiseOperator<F, Cs...>>::eval;
75 
76  constexpr StreamElementWiseOperator() = delete;
79  constexpr StreamElementWiseOperator<F, Cs...> &operator=(StreamElementWiseOperator<F, Cs...> const &) = default;
80  constexpr StreamElementWiseOperator<F, Cs...> &operator=(StreamElementWiseOperator<F, Cs...> &&) = default;
81 
88  template <typename... Ts>
89  constexpr StreamElementWiseOperator(Stream<Cs> const &... cs, Ts &&... fargs)
90  : f(fargs...), cs(cs...) { }
91 
94  inline constexpr size_t rows() const {
95  return std::get<0>(cs).rows();
96  }
97 
100  inline constexpr size_t cols() const {
101  return std::get<0>(cs).cols();
102  }
103 
116  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
117  return apply(i, j, std::index_sequence_for<Cs...>());
118  }
119 
134  constexpr typename Traits::elem_t operator()(size_t i) const {
135  return apply(i, std::index_sequence_for<Cs...>());
136  }
137 };
138 
139 template <class F, class... Cs>
140 struct _elem<StreamElementWiseOperator<F, Cs...>> {
141  typedef typename F::template expression<_elem_t<Cs>...> type;
142 };
143 
144 template <class F, class C, class... Cs>
145 struct _dims<StreamElementWiseOperator<F, C, Cs...>> : _dims<C> { };
146 
147 } // namespace internal
148 } // namespace lin
149 
150 #endif
std::tuple< Stream< Cs > const &... > const cs
Tuple of stream references.
Definition: stream_element_wise_operator.hpp:49
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr size_t size() const
Definition: stream.hpp:90
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
constexpr StreamElementWiseOperator< F, Cs... > & derived()
Definition: stream.hpp:57
traits< StreamElementWiseOperator< F, Cs... > > Traits
Traits information for this type.
Definition: stream_element_wise_operator.hpp:56
constexpr size_t cols() const
Definition: stream_element_wise_operator.hpp:100
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Lazily evaluates the requested tensor element.
Definition: stream_element_wise_operator.hpp:116
Proxy to a lazily evalutated element wise operation.
Definition: stream_element_wise_operator.hpp:30
constexpr Traits::elem_t operator()(size_t i) const
Lazily evaluates the requested tensor element.
Definition: stream_element_wise_operator.hpp:134
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
constexpr size_t rows() const
Definition: stream_element_wise_operator.hpp:94
Definition: config.hpp:27
constexpr StreamElementWiseOperator(Stream< Cs > const &...cs, Ts &&...fargs)
Constructs a proxy to an element wise tensor operation.
Definition: stream_element_wise_operator.hpp:89
Definition: stream_element_wise_operator.hpp:32
Provides a specific tensor type&#39;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
F const f
Element wise functor.
Definition: stream_element_wise_operator.hpp:38