GrPPI  0.2
Generic and Reusable Parallel Pattern Interface
Namespaces | Functions
poly/reduce.h File Reference
#include "polymorphic_execution.h"
#include "../common/support.h"
Include dependency graph for poly/reduce.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 grppi
 

Functions

template<typename InputIt , typename Identity , typename Combiner >
auto grppi::reduce_multi_impl (polymorphic_execution &ex, InputIt first, InputIt last, Identity identity, Combiner &&combine_op) -> decltype(combine_op(*first,*first))
 
template<typename E , typename... O, typename InputIt , typename Identity , typename Combiner , internal::requires_execution_not_supported< E > = 0>
auto grppi::reduce_multi_impl (polymorphic_execution &ex, InputIt first, InputIt last, Identity identity, Combiner &&combine_op)
 
template<typename InputIt , typename Identity , typename Combiner >
auto grppi::reduce (polymorphic_execution &e, InputIt first, InputIt last, Identity identity, Combiner &&combine_op)
 Invoke Reduce pattern with no identity value on a data sequence with sequential execution. More...