Top "Tbb" questions

Intel Threading Building Blocks (also known as TBB) is an open-source portable C++ template library for writing software programs that take advantage of multi-core processors.

Simplest TBB example

Can someone give me a TBB example how to: set the maximum count of active threads. execute tasks that are …

c++ tbb icc
C++ tbb_debug.dll missing

I'm new with openCV and I tried followed some tutorials. Everything worked fine until I included: opencv2/imgproc/imgproc.hpp …

visual-studio-2010 dll opencv tbb
C++ Parallelization Libraries: OpenMP vs. Thread Building Blocks

I'm going to retrofit my custom graphics engine so that it takes advantage of multicore CPUs. More exactly, I am …

c++ multithreading multicore openmp tbb
How to enable C++11 compiler on visual studio 2010 express edition?

I am using tbb::parallel_for function which make use of lambdas. I am getting syntax errors with the following …

c++ visual-studio-2010 visual-c++ c++11 tbb
How to install TBB from source on Linux and make it work

I would like to know how to install TBB from source and make it work on a Linux system. I …

c++ linux compilation installation tbb
How does Intel TBB's scalable_allocator work?

What does the tbb::scalable_allocator in Intel Threading Building Blocks actually do under the hood ? It can certainly be …

c++ multithreading stl malloc tbb
how to get Threaded Building Blocks working in Ubuntu 14.04

I want to get TBB working, but I'm having a little difficulty getting the compiling to work on Ubuntu 14.04. I …

installation ubuntu-14.04 tbb
Number of threads used by Intel TBB

How does Intel TBB choose the number of threads to used for a parallel section? Is there some kind of …

multithreading parallel-processing tbb
How do I build OpenCV with TBB?

I'm trying and failing to make opencv_traincascade use multiple threads. The only documentation I can find says to "build …

opencv tbb
Fast inter-thread communication mechanism

I need a fast inter-thread communication mechanism for passing work (void*) from TBB tasks to several workers which are in …

c++ multithreading tbb