GrPPI
1.0
Generic and Reusable Parallel Pattern Interface
|
#include <tuple>
#include <utility>
#include "common/execution_traits.h"
#include "common/iterator_traits.h"
Go to the source code of this file.
Namespaces | |
grppi | |
Functions | |
template<typename Execution , typename ... InputIterators, typename OutputIt , typename StencilTransformer , typename Neighbourhood , requires_iterators< InputIterators... > = 0, requires_iterator< OutputIt > = 0> | |
void | grppi::stencil (const Execution &ex, std::tuple< InputIterators... > firsts, std::size_t size, OutputIt out, StencilTransformer &&transform_op, Neighbourhood &&neighbour_op) |
Invoke Stencil pattern on a data sequence with sequential execution. More... | |
template<typename Execution , typename ... InputIterators, typename InputIt , typename OutputIt , typename StencilTransformer , typename Neighbourhood , requires_iterators< InputIterators... > = 0, requires_iterator< InputIt > = 0, requires_iterator< OutputIt > = 0> | |
void | grppi::stencil (const Execution &ex, std::tuple< InputIterators... > firsts, InputIt last, OutputIt out, StencilTransformer &&transform_op, Neighbourhood &&neighbour_op) |
Invoke Stencil pattern on a data sequence with sequential execution. More... | |
template<typename Execution , typename InputIt , typename OutputIt , typename StencilTransformer , typename Neighbourhood , requires_iterator< InputIt > = 0, requires_iterator< OutputIt > = 0> | |
void | grppi::stencil (const Execution &ex, InputIt first, InputIt last, OutputIt out, StencilTransformer &&transform_op, Neighbourhood &&neighbour_op) |
Invoke Stencil pattern on a data sequence with sequential execution. More... | |
template<typename Execution , typename InputIt , typename OutputIt , typename StencilTransformer , typename Neighbourhood , typename ... OtherInputIts, requires_iterator< InputIt > = 0, requires_iterator< OutputIt > = 0> | |
void | grppi::stencil (const Execution &ex, InputIt first, InputIt last, OutputIt out, StencilTransformer &&transform_op, Neighbourhood &&neighbour_op, OtherInputIts ... other_firsts) |
Invoke Stencil pattern on multiple data sequences with sequential execution. More... | |