|
29 | 29 | * 6.4 [Using a ``task_completion_handle`` as a successor](#using-a-task_completion_handle-as-a-successor) |
30 | 30 | * 6.5 [Returning ``task_completion_handle`` from submission functions](#returning-task_completion_handle-from-submission-functions) |
31 | 31 | * 7 [Naming considerations](#naming-considerations) |
32 | | -* 8 [Exit criteria & open questions](#exit-criteria--open-questions) |
33 | | -* 9 [Advanced examples](#advanced-examples) |
34 | | - * 9.1 [Recursive Fibonacci](#recursive-fibonacci) |
35 | | - * 9.2 [N-bodies problem](#n-bodies-problem) |
36 | | - * 9.3 [Wavefront](#wavefront) |
37 | | - * 9.3.1 [Non-recursive approach](#non-recursive-approach) |
38 | | - * 9.3.2 [Classic recursive approach](#classic-recursive-approach) |
39 | | - * 9.3.3 [Eager recursive approach](#eager-recursive-approach) |
40 | | - * 9.3.4 [Combination of eager and classic approaches](#combination-of-eager-and-classic-approaches) |
41 | | - * 9.4 [File Parser](#file-parser) |
| 32 | +* 8 [Implementation details](#implementation-details) |
| 33 | +* 9 [Exit criteria & open questions](#exit-criteria--open-questions) |
| 34 | +* 10 [Advanced examples](#advanced-examples) |
| 35 | + * 10.1 [Recursive Fibonacci](#recursive-fibonacci) |
| 36 | + * 10.2 [N-bodies problem](#n-bodies-problem) |
| 37 | + * 10.3 [Wavefront](#wavefront) |
| 38 | + * 10.3.1 [Non-recursive approach](#non-recursive-approach) |
| 39 | + * 10.3.2 [Classic recursive approach](#classic-recursive-approach) |
| 40 | + * 10.3.3 [Eager recursive approach](#eager-recursive-approach) |
| 41 | + * 10.3.4 [Combination of eager and classic approaches](#combination-of-eager-and-classic-approaches) |
| 42 | + * 10.4 [File Parser](#file-parser) |
42 | 43 |
|
43 | 44 | ## Introduction |
44 | 45 |
|
@@ -713,6 +714,11 @@ the API was renamed to ``tbb::task_group::set_task_order``. |
713 | 714 | `t` completes. The combination of ``transfer_this_task_completion_to`` and ``task_completion_handle`` indicates that successors |
714 | 715 | added after the transfer will be associated with the task that receives the completion, and the ``task_completion_handle`` follows the transferred completion of the task. |
715 | 716 |
|
| 717 | +## Implementation details |
| 718 | + |
| 719 | +Implementation details for the API added by this RFC are described as part of the |
| 720 | +[separate sub-RFC](implementation_details.md). |
| 721 | + |
716 | 722 | ## Exit criteria & open questions |
717 | 723 | * Performance targets for this feature should be defined. |
718 | 724 | * API improvements and enhancements should be considered (these may be criteria for promoting the feature to `supported`): |
|
0 commit comments