Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Get Started Guide #803

Merged
merged 9 commits into from
Mar 16, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/GSG/intro_gsg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ oneTBB enables you to simplify parallel programming by breaking computation into
parallelism is carried out through threads, an operating system mechanism that allows the same or different sets of instructions
to be executed simultaneously.

Here you can see one of the possible options for executing tasks by threads.
aepanchi marked this conversation as resolved.
Show resolved Hide resolved

.. image:: Images/how-oneTBB-works.png

Expand All @@ -18,4 +19,4 @@ Use oneTBB to write scalable applications that:
* Emphasize data-parallel programming
* Take advantage of concurrent collections and parallel algorithms

oneTBB supports nested parallelism as well. It means that you can use the library without being worried about overloading a computer.
oneTBB supports nested parallelism and load balancing. It means that you can use the library without being worried about oversubscribing a system.