129
edits
Changes
→List of TBB Algorithms:
===List of TBB Algorithms:===
<u>'''parallel_for:'''</u> Provides concurrent support for for loops. This allows data to be divided up into chunks that each thread can work on. The code is defined in "'''tbb/parallel_for.h'''" and takes the template of:
<pre>
tbb:parallel_invoke(myFuncA, myFuncB, myFuncC);
</pre>
==Lock Convoying Problem==