-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
87 changed files
with
1,121 additions
and
623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.0.0 | ||
6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.. _Flow_Graph_exception_tips: | ||
|
||
Flow Graph Tips for Exception Handling and Cancellation | ||
======================================================= | ||
|
||
|
||
The execution of a flow graph can be canceled directly or as a result of | ||
an exception that propagates beyond a node's body. You can then | ||
optionally reset the graph so that it can be re-executed. | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
../tbb_userguide/catching_exceptions | ||
../tbb_userguide/cancel_a_graph | ||
../tbb_userguide/use_graph_reset | ||
../tbb_userguide/cancelling_nested_parallelism |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.. _Flow_Graph_waiting_tips: | ||
|
||
Flow Graph Tips for Waiting for and Destroying a Flow Graph | ||
=========================================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
../tbb_userguide/always_use_wait_for_all | ||
../tbb_userguide/avoid_dynamic_node_removal | ||
../tbb_userguide/destroy_graphs_outside_main_thread |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.. _automatically-replacing-malloc: | ||
|
||
Automatically Replacing ``malloc`` and Other C/C++ Functions for Dynamic Memory Allocation | ||
========================================================================================== | ||
|
||
|
||
On Windows*, Linux\* operating systems, it is possible to automatically | ||
replace all calls to standard functions for dynamic memory allocation | ||
(such as ``malloc``) with the |full_name| scalable equivalents. | ||
Doing so can sometimes improve application performance. | ||
|
||
|
||
Replacements are provided by the proxy library (the library names can be | ||
found in platform-specific sections below). A proxy library and a | ||
scalable memory allocator library should be taken from the same release | ||
of oneTBB, otherwise the libraries may be mutually incompatible. | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
../tbb_userguide/Windows_C_Dynamic_Memory_Interface_Replacement | ||
../tbb_userguide/Linux_C_Dynamic_Memory_Interface_Replacement |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.