命名空间
变体
操作

std::execution::seq, std::execution::par, std::execution::par_unseq, std::execution::unseq

来自 cppreference.com
< cpp‎ | algorithm
 
 
算法库
约束算法和范围上的算法 (C++20)
约束算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
execution::seqexecution::parexecution::par_unseqexecution::unseq
(C++17)    (C++17)(C++17)(C++20)
排序和相关操作
分区操作
排序操作
二分查找操作
(在已分区范围内)
集合操作(在已排序范围内)
合并操作(在已排序范围内)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存上的操作
 
定义在头文件 <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::seq,
  • std::execution::par,
  • std::execution::par_unseq,以及
  • std::execution::unseq.

这些实例用于指定并行算法的执行策略,即允许的并行类型。

标准库实现可能提供其他执行策略(可能的未来添加可能包括 std::parallel::cudastd::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

[编辑] 另请参阅

执行策略类型
(类) [编辑]