From 4aa0b0b2db3f60c22702df0711d637f248e35cb0 Mon Sep 17 00:00:00 2001 From: Alexandra Date: Thu, 24 Mar 2022 16:52:43 +0300 Subject: [PATCH] Update examples.rst (#816) --- doc/GSG/examples.rst | 45 ++++++++++++++++++++++++++++---------------- 1 file changed, 29 insertions(+), 16 deletions(-) diff --git a/doc/GSG/examples.rst b/doc/GSG/examples.rst index 4a1b55ab24..6fe719c68d 100644 --- a/doc/GSG/examples.rst +++ b/doc/GSG/examples.rst @@ -5,8 +5,11 @@ oneTBB Samples Refer to the following examples to see how |short_name| works. -* `concurrent_hash_map `_ -* `concurrent_priority_queue `_ +* **Containers** + + * `concurrent_hash_map `_ + * `concurrent_priority_queue `_ + * `Flow Graph `_ * `A solution to the binpacking problem using a queue_node, a buffer_node, and function_node. `_ * `Cholesky Factorization algorithm `_ @@ -15,18 +18,28 @@ Refer to the following examples to see how |short_name| works. * `An example of a collection of digital logic gates that can be easily composed into larger circuits `_ * `An example of a Kohonen Self-Organizing Map using cancellation `_ * `Split computational kernel for execution between CPU and GPU `_ -* `parallel_for `_ - * `Game of life overlay `_ - * `Polygon overlay `_ - * `Parallel seismic wave simulation `_ - * `Parallel 2-D raytracer/renderer `_ - * `Find largest matching substrings `_ - * `Resumable task: Split computational kernel for execution between CPU and GPU `_ -* `parallel_for_each `_ -* `parallel_pipeline `_ -* `parallel_reduce `_ -* `task_arena `_ -* `task_group `_ -* `Compute Fibonacci numbers in different ways `_ -* `Execute similar computational kernels, with one task executing the SYCL* code and the other task executing the oneTBB code `_ + +* **Algorithms** + + * `parallel_for `_ + * `Game of life overlay `_ + * `Polygon overlay `_ + * `Parallel seismic wave simulation `_ + * `Parallel 2-D raytracer/renderer `_ + * `Find largest matching substrings `_ + * `Resumable task: Split computational kernel for execution between CPU and GPU `_ + * `parallel_for_each `_ + * `parallel_pipeline `_ + * `parallel_reduce `_ + +* **Task Scheduler** + + * `task_arena `_ + * `task_group `_ + * `Execute similar computational kernels, with one task executing the SYCL* code and the other task executing the oneTBB code `_ + +* **Other** + + * `Compute Fibonacci numbers in different ways `_ +