Tagged Questions
Intel Threading Building Blocks (also known as TBB) is a C++ template library for writing software programs that take advantage of multi-core processors.
13
votes
8answers
2k views
Any experiences with Intel's Threading Building Blocks?
Intel's Threading Building Blocks (TBB) open source library looks really interesting. Even though there's even an O'Reilly Book about the subject I don't hear about a lot of people using it. I'm ...
12
votes
7answers
6k views
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 looking for a library to parallelize loops.
It seems to me that both OpenMP and ...
10
votes
2answers
834 views
How do i write tasks? (parallel code)
I am impressed with intel thread building blocks. I like how i should write task and not thread code and i like how it works under the hood with my limited understanding (task are in a pool, there ...
10
votes
9answers
3k views
Is this C++ implementation for an Atomic float safe?
Edit: The code here still has some bugs in it, and it could do better in the performance department, but instead of trying to fix this, for the record I took the problem over to the Intel ...
8
votes
1answer
2k views
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 effective. I've just used it to take 25% off an apps' execution time (and ...
7
votes
1answer
246 views
What are the differences between Intel TBB and Microsoft PPL?
I'm planning to start "playing" with task-based parallelism for a cross-platform project. I wanted to use Intel Threading Building Blocks. I'm starting with Windows and Visual Studio.
As I just want ...
6
votes
6answers
289 views
Using multiple cores to process large, sequential file in c++
I have a large file (bigger then RAM, can't read whole at once) and i need to process it row by row (in c++). I want to utilize multiple cores, preferably with Intel TBB or Microsoft PPL. I would ...
5
votes
1answer
6k views
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 and used the filter2D function. I got the following error when I start my ...
5
votes
2answers
180 views
Learning Intel's TBB
Could anyone recommend good book about Intel's threading library and how to use it?
5
votes
1answer
253 views
Multithreading with C++ API
i am trying to parallel my program using OpenMP and sometimes i feels that i am reaching a dead end.
I would like to share variables in a function member that i defined (and initialized) in the ...
5
votes
2answers
571 views
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 specification available?
5
votes
2answers
535 views
Threading Building Blocks (TBB) for Qt-based CD ripper?
I am building a CD ripper application in C++ and Qt. I would like to parallelize the application such that multiple tracks can be encoded concurrently. Therefore, I have structured the application ...
4
votes
5answers
339 views
Homegrown workqueue vs Intel TBB
We are considering which parallel framework for C/C++ to use. We have some very special conditions and are not 100% sure, that e.g. TBB can add something "more".
There are N running threads and one ...
4
votes
3answers
430 views
Intel TBB will work on AMD processors? [closed]
Possible Duplicate:
AMD multi-core programming
Is Intel TBB processor dependent? Will it work on amd or on ARM (under meeGo for example?)
4
votes
1answer
305 views
Intel TBB license
I'm a bit confused over the Intel Threading Building Blocks commercial vs open source license. The open source version is licensed under GPLv2 with the runtime exception, but what does that imply in ...
3
votes
1answer
112 views
concurrent_vector for 2d array
I am currently trying to represent a 2D array using tbb::concurrent_vector<T>. This 2d array will be accessed by a lot of different threads and thats why I want it to handle parallel accesses ...
3
votes
1answer
344 views
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 tables.
However the performance I get out of it is horrendous, I just can't ...
3
votes
2answers
69 views
How to search for Possibilities to parallelize?
I have some serial code that I have started to parallelize using Intel's TBB. My first aim was to parallelize almost all the for loops in the code (I have even parallelized for within for loop)and ...
3
votes
1answer
261 views
Does the “libstdc++” exception to the GPLv2 allow release of statically compiled binaries without restriction?
I'm considering using Intel's Threading Building Blocks library. According to it's faq, it's licensed as "GPL v2 with the libstdC++ Runtime Exception". I would like to release my source code, but ...
3
votes
3answers
333 views
What are the recommended C++ parallelization libraries for large data processing
Can some one recommend approaches to parallelize in C++, when the data to be acted up on is huge. I have been reading about openMP and Intel's TBB for parallelization in C++, but have not experimented ...
3
votes
1answer
316 views
Installing Intel's TBB 3.0 framework on MacOS 10.6 (Snow Leopard)
I'm having a bit of trouble installing Intel's Threading Building Blocks (TBB) 3.0 as a framework on my MacOS system. Does anyone know a good tutorial? I've tried using MacPorts, which has TBB 2.2: it ...
3
votes
3answers
179 views
Performance gain issue in multicore application
I have a serial(nonparallel) application written in C. I have modified and re-written it using Intel Threading Building Blocks. When I run this parallel version on an AMD Phenom II machine which is a ...
3
votes
2answers
1k views
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 running blocking operations.
Currently I'm looking into using pipe()+libevent. ...
3
votes
1answer
901 views
AMD multi-core programming
I want to start to write applications(C++) that will utilize the additional cores to execute portions of the code that have a need to perform lots of calculations and whose computations are ...
3
votes
2answers
958 views
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 load distribution of the scheduler, but I don't need the scheduler, just the containers, so ...
2
votes
1answer
103 views
shared pointers and multithreading
I have been using the following code for quite some testing now and havent run into any problems, however I just realized that the code might be not threadsafe and lead to raceconditions.
...
...
2
votes
0answers
87 views
Which thread-parallel interface to use for task sharing and splitting using a stack?
I am planning to write a code where I want to share the work using tasks which can be split. In a serial version, I use a stack initialised with the root task. The stack is emptied by repeatedly ...
2
votes
2answers
107 views
TBB vs. Homegrown Workqueue
I know TBB (Thread Building Blocks) claim to have a sophisticated engine, but from the algorithmic point of view:
If we had (say on Linux) a workqueue that has N working-threads (POSIX threads, N is ...
2
votes
1answer
276 views
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 with TBB". I'm not sure if I'm failing to successfully build OpenCV ...
2
votes
2answers
88 views
TBB task_groups without using stack
I would like to perform a post-order tree traversal in C++. The tree can be so deep that I cannot use recursion (it exhausts the stack). Instead I create an std::stack<...> that puts everything on ...
2
votes
9answers
136 views
tbb: parallel find first element
I have got this problem:
Find the first element in a list, for which a given condition holds.
Unfortunately, the list is quite long (100.000 elements), and evaluation the condition for each ...
2
votes
2answers
96 views
TBB concurrent_vector with openmp
Can we use TBB concurrent_vector with openmp?
Will concurrent updates be allowed?
2
votes
2answers
159 views
OpenMP overhead
I have parallelized image convolution and lu factorization using OpenMP and Intel TBB. I am testing it on 1-8 cores. But when I try it on 1 core in OPenMP and TBB by specifying one thread using ...
2
votes
0answers
66 views
Intel Parallel Studio timing inconsistencies
I have some code that uses Intel TBB and I'm running on a 32 core machine. In the code, I use
parallel_for(blocked_range (2,left_image_width-2, left_image_width /32) ...
to spawn 32 to threads that ...
2
votes
2answers
174 views
How to divide load between different processors
I am running some parallel code on a machine which has 4 intel processors and 8 cores on each .I am using TBB.Suppose a given loop(that I parallelize ) has X iterations how should I choose my ...
2
votes
1answer
635 views
Parallelizing OpenCV code using TBB
I am trying to parallelize some Image Matching code written in OpenCV using TBB.Problem is that according to me matching(creating a 5x5 window in left image and looking for match in right pixel by ...
2
votes
3answers
612 views
Intel TBB using task_group to do a Bitonic Sort
I'm implementing a bitonic sort using intel TBB. When using the parallel_invoke method all goes well. But when using task_group(without calling the wait method), the output is not sorted. When using ...
2
votes
3answers
463 views
Using malloc instead of new, and calling the copy constructor when the object is created
I wanted to try out TBB's scalable_allocator, but was confused when I had to replace some of my code.
This is how allocation is done with the allocator:
SomeClass* s = ...
2
votes
1answer
209 views
IOCP with task scheduler (Threaded Building Blocks)
I'm using TBB and was wondering how I could use IOCP with its task scheduler. Has anyone done this? If so, some details would be greatly appreciated.
I don't have much experience with IOCP, but I'd ...
2
votes
2answers
603 views
Tasks on Thread Building Blocks
Here is the example code:
#include <iostream>
#include <list>
#include <tbb/task.h>
#include <tbb/task_group.h>
#include <stdlib.h>
#include <boost/thread.hpp>
...
2
votes
2answers
377 views
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 source version doesn't seem to have a proper install script.
...
2
votes
4answers
190 views
How to approach parallel processing of messages?
I am redesigning the messaging system for my app to use intel threading building blocks and am stumped trying to decide between two possible approaches.
Basically, I have a sequence of message ...
2
votes
5answers
3k views
Multi-Core Programming. Boost's MPI, OpenMP, TBB, or something else?
I am totally a novice in Multi-Core Programming, but I do know how to program C++.
Now, I am looking around for Multi-Core Programming library. I just want to give it a try, just for fun, and right ...
2
votes
2answers
585 views
A question about TBB/C++ code
I am reading The thread building block book. I do not understand this piece of code:
FibTask& a=*new(allocate_child()) FibTask(n-1,&x);
FibTask& b=*new(allocate_child()) ...
2
votes
2answers
266 views
Is it safe to spin on a volatile variable in user-mode threads?
I'm not quite sure if it's safe to spin on a volatile variable in user-mode threads, to implement a light-weight spin_lock, I looked at the tbb source code, tbb_machine.h:170,
//! Spin WHILE the ...
2
votes
2answers
825 views
How do I link against Intel TBB on Mac OS X with GCC?
I can't for the life of me figure out how to compile and link against the Intel TBB library on my Mac. I've run the commercial installer and the tbbvars.sh script but I can't figure this out. I have a ...
2
votes
2answers
558 views
Using Intel Threading Building Blocks (TBB) in Linux
I want to use Intel Threading Building Blocks (TBB) in Linux. Can anyone suggest a good IDE for that and possibly any steps to integrate TBB with that IDE?
Thanks,
Rakesh.
2
votes
1answer
104 views
Thread Building Block versus MPI, which one fits mt need better?
Now I have a serial solver in C++ for solving optimization problems and I am supposed to parallelize my solver with different parameters to see whether it can help improve the performance of the ...
2
votes
5answers
2k views
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 considering writing a benchmark application written in Java and .NET/C# ...
2
votes
1answer
308 views
Did Visual Studio 2008 SP1 introduce runtime bugs or am I crazy?
I've been wracking my brains out trying to figure out what the heck is going on with the most recent (non beta) Visual Studio 2008 SP1:
My app built with OpenMP runs incredibly slow in the debugger, ...