GrPPI
0.3.1
Generic and Reusable Parallel Pattern Interface
|
#include <utility>
#include "common/callable_traits.h"
#include "common/execution_traits.h"
#include "common/pipeline_pattern.h"
Go to the source code of this file.
Namespaces | |
grppi | |
Functions | |
template<typename Execution , typename Generator , typename... Transformers, requires_execution_supported< Execution > = 0> | |
void | grppi::pipeline (const Execution &ex, Generator &&generate_op, Transformers &&...transform_ops) |
Invoke Pipeline pattern on a data stream. More... | |
template<typename Generator , typename... Transformers, typename Consumer > | |
auto | grppi::pipeline (Generator &&generate_op, Transformers &&...transform_ops, Consumer &&consume_op) |
Build a composable Pipeline pattern representation that can be composed in other streaming patterns. More... | |