Threading Building Blocks

Threading Building Blocks
Developer(s) Intel
Stable release
2017 / September 6, 2016 (2016-09-06)[1][2]
Written in C++
Operating system FreeBSD, Linux, Solaris, OS X, Windows, Android
Type library or framework
License dual: commercial / open source (Apache 2.0), plus Freeware[3]
Website www.threadingbuildingblocks.org
software.intel.com/en-us/intel-tbb

Threading Building Blocks (TBB) is a C++ template library developed by Intel for parallel programming on multi-core processors. Using TBB, a computation is broken down into tasks that can run in parallel. The library manages and schedules threads to execute these tasks.

Overview

A TBB program creates, synchronizes and destroys graphs of dependent tasks according to algorithms, i.e. high-level parallel programming paradigms (a.k.a. Algorithmic Skeletons). Tasks are then executed respecting graph dependencies. This approach groups TBB in a family of solutions for parallel programming aiming to decouple the programming from the particulars of the underlying machine.

TBB implements work stealing to balance a parallel workload across available processing cores in order to increase core utilization and therefore scaling. Initially, the workload is evenly divided among the available processor cores. If one core completes its work while other cores still have a significant amount of work in their queue, TBB reassigns some of the work from one of the busy cores to the idle core. This dynamic capability decouples the programmer from the machine, allowing applications written using the library to scale to utilize the available processing cores with no changes to the source code or the executable program file. In a 2008 assessment of the work stealing implementation in TBB, researchers from Princeton University found that it was suboptimal for large numbers of processors cores, causing up to 47% of computing time spent in scheduling overhead when running certain benchmarks on a 32-core system.[4]

TBB, like the STL (and the part of the C++ standard library based on it), uses templates extensively. This has the advantage of low-overhead polymorphism, since templates are a compile-time construct which modern C++ compilers can largely optimize away.

Intel TBB is available commercially as a binary distribution with support,[5] and as open-source software in both source and binary forms.[6]

TBB does not provide guarantees of determinism or freedom from data races.[7]

Library contents

TBB is a collection of components for parallel programming:

Systems supported

The TBB commercial release 3.0 supports Windows (XP or newer), OS X (version 10.5.8 or higher) and Linux using Visual C++ (version 8.0 or higher, on Windows only), Intel C++ Compiler (version 11.1 or higher) or the GNU Compiler Collection (gcc).[8] Additionally, the TBB open source community has contributed patches for Solaris,[9] PowerPC, Xbox 360, QNX Neutrino, and FreeBSD.

See also

Notes

  1. "What's New? Intel® Threading Building Blocks 2017".
  2. "Intel Threading Building Blocks Release Notes".
  3. "No Cost Options for Intel Parallel Studio XE, Support yourself, Royalty-Free".
  4. Contreras, Gilberto; Martonosi, Margaret (2008). Characterizing and improving the performance of Intel Threading Building Blocks (PDF). IEEE Int'l Symp. on Workload Characterization.
  5. http://www.threadingbuildingblocks.com Intel Threading Building Blocks Commercial Version Homepage
  6. http://www.threadingbuildingblocks.org Threading Building Blocks Open Source Project Homepage
  7. Bocchino Jr., Robert L.; Adve, Vikram S.; Adve, Sarita V.; Snir, Marc (2009). Parallel Programming Must Be Deterministic by Default. USENIX Workshop on Hot Topics in Parallelism.
  8. "Intel Threading Building Blocks - Release Notes Version 3.0". Retrieved 2011-08-08.
  9. "Using Intel's Threaded Building Blocks (TBB) With Sun Studio Express". Retrieved 2008-05-08.

References

This article is issued from Wikipedia - version of the 10/7/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.