Intel Threading Building Blocks 3.0
Written by Harry Fairhead   
Friday, 21 May 2010

Threading is important and the new version 3.0 of Intel Threading Building Blocks is an event of interest to all.

 

Banner

A new version of Intel Threading Building Blocks (TBB) was announced recently. Given how important it is to graduate from single-threaded applications to multi-threaded apps that make best use of multi-core processors we all need to take notice - even if you don't program in C++.

TBB is a parallel library for C++ available in both commercial and open source editions - same software, different licence.The new version now works with Visual Studio 2010 and can run on top of the Concurrency Runtime under Windows 7.

 

tbb

 

Many of the new features are due to the need to keep up with the moving target that is C++0x. The most recent update to the standard was produced in March 2010 and TBB makes use of the new features where appropriate. For example TBB uses proper implementation of some aspects of  thread exception handling if it is supported in the compiler and uses its old implementation if not. There are some minor changes that could break existing code but these are easy to fix.

The new version introduces the use of lambda expressions/functions (also new in C++0x) which have a natural affinity with parallelism because you so often have to reference a piece of code as if it was data to control its execution. Using lambda expressions doesn't add any new capabilities but it makes the code much easier to understand. The "pipeline" facility now has a strongly typed version parallel_pipeline which also allows lambdas. This means you can build a pipeline that returns a typed pointer using template parameters.

Other new features include a new associative container that can permits concurrent insertion and traversal with no visible locking needed. The task scheduler now supports fire and forget tasks, independent task scheduling for foreign threads. 

Also new, but not exactly an enhancement, is the TBB Design Pattern manual. This is a collection of design patterns in parallel programming using the TBB. Patterns include  Odd-Even Communication, Wavefront, Reduction, Divide and Conquer, GUI Thread, Non-Preemptive Priorities, Lazy Initialization and Reference Counting.

More information from: Intel Threading Building Blocks 3.0

 

Banner


Microsoft Introduces .NET Smart Components
01/04/2024

Microsoft has provided a set of .NET Smart Components, described as a set of genuinely useful AI-powered UI components that you can quickly and easily add to .NET apps. The components are prebuilt end [ ... ]



The University of Tübingen's Self-Driving Cars Course
22/03/2024

The recorded lectures and the written material of a course on Self-Driving Cars at the University of Tübingen have been made available for free. It's a first class opportunity to learn the in an [ ... ]


More News

<ASIN:0596514808>

<ASIN:0470289627>

<ASIN:0123705916>

<ASIN:0750685395>

<ASIN:0596521537>

Last Updated ( Thursday, 20 May 2010 )