tmp/tmpqvwp78n3/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Parallel and unsequenced execution policy <a id="execpol.parunseq">[[execpol.parunseq]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
class execution::parallel_unsequenced_policy { unspecified };
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
The class `execution::parallel_unsequenced_policy` is an execution
|
| 8 |
+
policy type used as a unique type to disambiguate parallel algorithm
|
| 9 |
+
overloading and indicate that a parallel algorithm’s execution may be
|
| 10 |
+
parallelized and vectorized.
|
| 11 |
+
|
| 12 |
+
During the execution of a parallel algorithm with the
|
| 13 |
+
`execution::parallel_unsequenced_policy` policy, if the invocation of an
|
| 14 |
+
element access function exits via an uncaught exception, `terminate()`
|
| 15 |
+
shall be called.
|
| 16 |
+
|