Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.

tbb_thread

sunnyboy_zj
Beginner
364 Views
Intel TBB 2.1 has a new class that is tbb_thread. What is it`s function? How to work? Is there somecode samples ?

Thanks in advance.
0 Kudos
1 Solution
Bartlomiej
New Contributor I
364 Views
Just have a look at the Reference Manual: http://www.threadingbuildingblocks.org/uploads/81/91/Latest%20Open%20Source%20Documentation/Reference%20(Open%20Source).pdf , Section 9.

Tbb_thread is simply a wrapper around the threads native to the platform and allows functionality similar to Boost threads, POSIX threads, etc.

It does not combine well with the task-driven model, but is sometimes convenient.

View solution in original post

0 Kudos
1 Reply
Bartlomiej
New Contributor I
365 Views
Just have a look at the Reference Manual: http://www.threadingbuildingblocks.org/uploads/81/91/Latest%20Open%20Source%20Documentation/Reference%20(Open%20Source).pdf , Section 9.

Tbb_thread is simply a wrapper around the threads native to the platform and allows functionality similar to Boost threads, POSIX threads, etc.

It does not combine well with the task-driven model, but is sometimes convenient.

0 Kudos
Reply