GrPPI
1.0
Generic and Reusable Parallel Pattern Interface
|
#include "../common/mpmc_queue.h"
#include "../common/iterator.h"
#include "../common/execution_traits.h"
#include "../seq/sequential_execution.h"
#include <type_traits>
#include <tuple>
#include <experimental/optional>
#include <omp.h>
Go to the source code of this file.
Classes | |
class | grppi::parallel_execution_omp |
OpenMP parallel execution policy. More... | |
Namespaces | |
grppi | |
Functions | |
template<typename E > | |
constexpr bool | grppi::is_parallel_execution_omp () |
Metafunction that determines if type E is parallel_execution_omp. More... | |
template<> | |
constexpr bool | grppi::is_supported< parallel_execution_omp > () |
Determines if an execution policy is supported in the current compilation. More... | |
template<> | |
constexpr bool | grppi::supports_map< parallel_execution_omp > () |
Determines if an execution policy supports the map pattern. More... | |
template<> | |
constexpr bool | grppi::supports_reduce< parallel_execution_omp > () |
Determines if an execution policy supports the reduce pattern. More... | |
template<> | |
constexpr bool | grppi::supports_map_reduce< parallel_execution_omp > () |
Determines if an execution policy supports the map-reduce pattern. More... | |
template<> | |
constexpr bool | grppi::supports_stencil< parallel_execution_omp > () |
Determines if an execution policy supports the stencil pattern. More... | |
template<> | |
constexpr bool | grppi::supports_divide_conquer< parallel_execution_omp > () |
Determines if an execution policy supports the divide/conquer pattern. More... | |
template<> | |
constexpr bool | grppi::supports_pipeline< parallel_execution_omp > () |
Determines if an execution policy supports the pipeline pattern. More... | |