8 #ifndef BLACKCATTENSORS_TENSORS_FUNCTIONS_REDUCTIONS_HOST_REDUCE_H_ 9 #define BLACKCATTENSORS_TENSORS_FUNCTIONS_REDUCTIONS_HOST_REDUCE_H_ 22 template<
class Stream,
class ScalarOutput,
class Expression>
23 static void sum(
Stream stream, ScalarOutput output, Expression expression) {
25 auto function = [&]() {
27 using value_type =
typename Expression::value_type;
29 value_type& total = output[0];
31 #if defined(_OPENMP) && !defined(BC_NO_OPENMP) 32 #pragma omp parallel for reduction(+:total) 34 for (
bc::size_t i = 0; i < expression.size(); ++i) {
35 total += expression[i];
38 stream.enqueue(
function);
static void sum(Stream stream, ScalarOutput output, Expression expression)
Definition: host.h:23
int size_t
Definition: common.h:283
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22