• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Intel® Threading Building Blocks (TBB)

Lun

Joined
3/1/07
Messages
74
Points
18
Has anybody tried it out ? If yes, on quant project ?

From what I observe, it is like "Task Parallel Lib" of .Net 4.0
 
Has anybody tried it out ? If yes, on quant project ?

From what I observe, it is like "Task Parallel Lib" of .Net 4.0

I've used TBB to the some extent (but not on a quant project). Don't know about "Task Parallel Lib", so I cannot compare here. Basically, TBB is OK for expressing task-level parallelism in situations when one want/has to go with C++; however, most people in HPC community are sticking with C or Fortran for their work, so pthreads or OpenMP are much more used. On the other side, TBB is mostly thin wrapper around native threading libraries, so performance-wise is on the similar level as these libraries.

Btw, if you get into TBB, then you may also get interested in Array Building Blocks, which is C++ library by Intel (arisen from their failed Larrabee project, and then also from the acquisition of Rapidmind guys) for expressing data-level parallelism, and is intended to challenge GPGPU approach. Lots of parallel development tools fighting for its market segment, it's going to be interesting to see which ones are going to prevail in coming years...
 
Back
Top