tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
execution.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2024 Tobias Hienzsch
3
4#ifndef TETL_EXECUTION_HPP
5#define TETL_EXECUTION_HPP
6
7/// \defgroup execution execution
8/// Predefined execution policies for parallel/unsequenced versions of the algorithms
9/// \ingroup algorithms-library
10/// \code{.cpp}
11/// #include <etl/execution.hpp>
12/// \endcode
13
14#include <etl/_config/all.hpp>
15
16#include <etl/_execution/is_execution_policy.hpp>
17#include <etl/_execution/sequenced_policy.hpp>
18#include <etl/_execution/unsequenced_policy.hpp>
19
20// Non-standard extensions
21#include <etl/_execution/execution_policy.hpp>
22
23#endif // TETL_EXECUTION_HPP