8 #ifndef BC_TENSOR_STATIC_FUNCTIONS_H_ 9 #define BC_TENSOR_STATIC_FUNCTIONS_H_ 14 template<
class Expression>
19 template<
class Expression>
22 using value_type = std::conditional_t<
23 std::is_same<typename Expression::value_type, bool>::value,
25 typename Expression::value_type>;
27 return bc::algorithms::accumulate(
28 bc::streams::select_on_get_stream(tensor),
34 template<
class Expression>
37 using value_type =
typename Expression::value_type;
38 return bc::algorithms::accumulate(
39 bc::streams::select_on_get_stream(tensor),
46 template<
class Expression>
51 template<
class Expression>
56 template<
class Expression>
60 bc::streams::select_on_get_stream(tensor),
65 template<
class Expression>
69 bc::streams::select_on_get_stream(tensor),
74 template<
class Expression>
79 template<
class Expression>
84 template<
class Expression>
89 template<
class Expression>
Definition: function_sum.h:23
auto un_expr(functor f) const
Definition: expression_base.h:104
class::::::Args static auto max_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:151
int size_t
Definition: common.h:283
auto sum(const Expression_Base< Expression > &tensor)
Definition: tensor_static_functions.h:15
auto prod(const Expression_Base< Expression > &tensor)
Definition: tensor_static_functions.h:35
struct bc::oper::cmath_functions::Logical logical
auto cw_cend() const
Definition: expression_base.h:52
class::::::Args static auto min_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:153
auto cw_cbegin() const
Definition: expression_base.h:51
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
auto value_sum(const Expression_Base< Expression > &tensor)
Definition: tensor_static_functions.h:20