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


Can C++ Be As Safe As Rust?
10/04/2024

Herb Sutter is a well known and respected C++ champion and he thinks that the language only needs a few tweaks to make it as safe as Rust. Can this be true?



Azure AI And Pgvector Run Generative AI Directly On Postgres
26/03/2024

It's a match made in heaven. The Azure AI extension enables the database to call into various Azure AI services like Azure OpenAI. Combined with pgvector you can go far beyond full text search. Let's  [ ... ]


More News

<ASIN:0596514808>

<ASIN:0470289627>

<ASIN:0123705916>

<ASIN:0750685395>

<ASIN:0596521537>

Last Updated ( Thursday, 20 May 2010 )