MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches
Parallel.hpp
Go to the documentation of this file.
1#pragma once
2
3#ifdef MAYAFLUX_PLATFORM_MACOS
4#include "oneapi/dpl/algorithm"
5#include "oneapi/dpl/execution"
6#else
7#include <execution>
8#endif
9
11using std::for_each;
12using std::sort;
13using std::transform;
14using std::execution::par;
15using std::execution::par_unseq;
16using std::execution::seq;
17}