7 #ifndef LIN_CORE_STREAM_ELEMENT_WISE_OPERATOR_HPP_ 8 #define LIN_CORE_STREAM_ELEMENT_WISE_OPERATOR_HPP_ 10 #include "../config.hpp" 11 #include "../types/stream.hpp" 14 #include <type_traits> 29 template <
class F,
class... Cs>
31 template <
class G,
class... Ds>
33 is_detected<G::template expression, _elem_t<Ds>...>,
34 have_same_dimensions<Ds...>
37 static_assert(
sizeof...(Cs) > 0,
38 "Arguments pack to StreamElementWiseOperator<...> must contain at least one argument");
40 "Invalid StreamElementWiseOperator<...> parameters");
49 std::tuple<Stream<Cs>
const &...>
const cs;
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)...);
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)...);
88 template <
typename... Ts>
90 : f(fargs...), cs(cs...) { }
94 inline constexpr
size_t rows()
const {
95 return std::get<0>(
cs).
rows();
100 inline constexpr
size_t cols()
const {
101 return std::get<0>(
cs).
cols();
117 return apply(i, j, std::index_sequence_for<Cs...>());
135 return apply(i, std::index_sequence_for<Cs...>());
139 template <
class F,
class... Cs>
141 typedef typename F::template expression<_elem_t<Cs>...> type;
144 template <
class F,
class C,
class... Cs>
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'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'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'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