GrPPI
1.0
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< std::decay_t< Execution >> = 0> | |
void | grppi::pipeline (const Execution &ex, Generator &&generate_op, Transformers &&... transform_ops) |
Invoke Pipeline pattern on a data stream. More... | |
template<typename Transformer , typename ... Transformers, requires_execution_not_supported< std::decay_t< Transformer >> = 0> | |
auto | grppi::pipeline (Transformer &&transform_op, Transformers &&... transform_ops) |
Build a composable Pipeline pattern representation that can be composed in other streaming patterns. More... | |