std::execution::seq, std::execution::par, std::execution::par_unseq, std::execution::unseq
来自 cppreference.com
定义在头文件 <execution> 中 |
||
inline constexpr std::execution::sequenced_policy seq { /* unspecified */ }; |
(自 C++17 起) | |
inline constexpr std::execution::parallel_policy par { /* unspecified */ }; |
(自 C++17 起) | |
inline constexpr std::execution::parallel_unsequenced_policy par_unseq { /* unspecified */ }; |
(自 C++17 起) | |
inline constexpr std::execution::unsequenced_policy unseq { /* unspecified */ }; |
(自 C++20 起) | |
执行策略类型
- std::execution::sequenced_policy,
- std::execution::parallel_policy,
- std::execution::parallel_unsequenced_policy,以及
- std::execution::unsequenced_policy
具有以下各自的实例
-
std::execution::seq
, -
std::execution::par
, -
std::execution::par_unseq
,以及 -
std::execution::unseq
.
这些实例用于指定并行算法的执行策略,即允许的并行类型。
标准库实现可能提供其他执行策略(可能的未来添加可能包括 std::parallel::cuda
和 std::parallel::opencl
)。
[编辑] 示例
运行此代码
#include <algorithm> #include <chrono> #include <cstdint> #include <iostream> #include <random> #include <vector> #ifdef PARALLEL #include <execution> namespace execution = std::execution; #else enum class execution { seq, unseq, par_unseq, par }; #endif void measure([[maybe_unused]] auto policy, std::vector<std::uint64_t> v) { const auto start = std::chrono::steady_clock::now(); #ifdef PARALLEL std::sort(policy, v.begin(), v.end()); #else std::sort(v.begin(), v.end()); #endif const auto finish = std::chrono::steady_clock::now(); std::cout << std::chrono::duration_cast<std::chrono::milliseconds>(finish - start) << '\n'; }; int main() { std::vector<std::uint64_t> v(1'000'000); std::mt19937 gen {std::random_device{}()}; std::ranges::generate(v, gen); measure(execution::seq, v); measure(execution::unseq, v); measure(execution::par_unseq, v); measure(execution::par, v); }
可能的输出
// online GNU/gcc compiler (PARALLEL macro is not defined) 81ms 80ms 79ms 78ms // with g++ -std=c++23 -O3 ./test.cpp -ltbb -DPARALLEL 165ms 163ms 30ms 27ms
[编辑] 另请参阅
(C++17)(C++17)(C++17)(C++20) |
执行策略类型 (类) |