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.

Intel TBB vs Boost

I my new application I have flexibility to decide the use of library for multi-threading. So far I was using …

boost boost-thread tbb
How do you install Intel TBB on OS X?

How do you properly install the open source version of Intel Thread Building Blocks (TBB) on OS X 10.6? The open …

macos tbb
How to statically link to TBB?

How can I statically link the intel's TBB libraries to my application? I know all the caveats such as unfair …

c++ linker tbb
High-performance Math library for .NET /C# and Java

We currently have a high-performance scientific application written in C++ that makes use of Intel Math Kernel Library. We are …

c# java c++ tbb intel-mkl
TBB Concurrent Hash map

I am implementing tbb's concurrent hash map to compare the performance of it against a suite of other concurrent hash …

c++ hashmap tbb concurrenthashmap
How to install opencv with tbb enabled using mingw

How to install Opencv with TBB enabled? I tried the following: 1) Downloaded the TBB package. 2) Build using the below command …

windows opencv cmake mingw tbb
Qt Android project with OpenCV - tbb compiling errors

I want to create a Qt Android App with OpenCV. I'm using Necessitas Qt Creator and the OpenCV 2.4.0 Android binary …

android qt opencv tbb
Intel TBB will work on AMD processors?

Possible Duplicate: AMD multi-core programming Is Intel TBB processor dependent? Will it work on amd or on ARM (under meeGo …

c++ c intel multithreading tbb
tbb parallel_for example c++ without lambda

Can you give me an example on tbb "parallel_for" without using lambda expression? Because I can't run lambda expression …

c++ lambda tbb parallel-for
How to get return value from a function called which executes in another thread in TBB?

In the code: #include <tbb/tbb.h> int GetSomething() { int something; // do something return something; } // ... tbb::tbb_thread(…

c++ multithreading return-value function-pointers tbb