GrPPI
0.2
Generic and Reusable Parallel Pattern Interface
|
TBB parallel implementation of the Pipeline pattern. More...
Functions | |
template<typename Generator , typename... Transformers, requires_no_arguments< Generator > = 0> | |
void | grppi::pipeline (parallel_execution_tbb &ex, Generator generate_op, Transformers &&...transform_ops) |
Invoke Pipeline pattern on a data stream with TBB parallel execution. More... | |
TBB parallel implementation of the Pipeline pattern.
void grppi::pipeline | ( | parallel_execution_tbb & | ex, |
Generator | generate_op, | ||
Transformers &&... | transform_ops | ||
) |
Invoke Pipeline pattern on a data stream with TBB parallel execution.
Generator | Callable type for the stream generator. |
Transformers | Callable type for each transformation stage. |
ex | TBB parallel execution policy object. |
generate_op | Generator operation. |
trasnform_ops | Transformation operations for each stage. |