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

learn more… | top users | synonyms

0
votes
2answers
774 views

How to make a threadpool in c++ TBB?

I might not be measuring this correctly but I have some simple code I'm playing with. I don't think its a threadpool because if I make the work unit very large then the cpu goes to 190-199%(I have ...
0
votes
2answers
168 views

TBB for a workload that keeps changing?

I'm sorry I don't seem to get intel's TBB it seems great & supported but I can't wrap my head around how to use it since I guess I'm not used to thinking of parallelism in terms of tasks but ...
2
votes
2answers
448 views

Thread pool pattern in TBB and other libraries

Is there any thread pool pattern realization in TBB library? If no, where can I find it? Most of open source realizations, that I already found looks unfinished and unstable.
0
votes
1answer
262 views

Is there any performance comparison between TBB::scalable_allocator, tcmalloc and jemalloc?

I want to use a memory allocator in multithreading enviroment and each thread eats a lot of memory. Which should I choose? Is there any performance between these allocators? Thanks.
1
vote
0answers
248 views

Does TBB scalable allocator emphasize memory fragmentation?

I have a video retrieval system which cosumes a lot of memory during retrieval process. I know tbb scalable allocator releases the freed memory to a memory pool and does not return it to the OS. Does ...
0
votes
0answers
584 views

C++ Compile and Build Command for Geany with TBB

I would like to know what are the C++ Compile and Build Commands for Geany with TBB using g++ compiler. I've been struggling with Geany for days and I couldn't make it work. Note: Within my C++ code ...
0
votes
1answer
1k views

tbb_debug.dll Missing - MSER Sample OpenCV 2.3.1

I am trying to use the MSER sample found in the samples directory of OpenCV 2.3.1. At the moment the DLL missing error keeps popping up. This is the first time I am testing the MSER code and doubt ...
0
votes
1answer
178 views

Why this tbb program cannot compile?

I install the threading building blocks(http://threadingbuildingblocks.org/ver.php?fid=174) in centos in directory /home/is_admin/tbb40_233oss/ This is my code: #include "tbb/concurrent_queue.h" ...
2
votes
1answer
284 views

Atomic int incorrectly incrementing? Intel TBB Implementation

I'm implementing a multi-threaded program to validate the Collatz Conjecture for a range of numbers using Intel TBB, and I am having trouble figuring out why the atomic variable <int> count ...
0
votes
1answer
447 views

About TBB thread local storage

I'm having a hard time understanding TBB's enumerable thread specific. I have written this little code to test the TLS #include <iostream> #include <vector> #include ...
0
votes
1answer
389 views

tbb concurrent containers performance

I have this program that is using vector and unordered_map now when I am building them I am reading from a serial file so practically I can't parallelize the building process but when I use them ...
2
votes
1answer
438 views

openmp reduce technique

I have this for loop that finds minimum and maximum length, as you can see I have two values to reduce here while looking at OpenMP I can only notice that it provides reduction technique for only one ...
1
vote
1answer
367 views

How to disable TBB when I compile an OpenCV project

I'm working with OpenCV 2.3.1 on VisualStudio 9 and when I compile my project, I've an error that I do not have the tbb.dll. But I don't need it since it gonna be an Android project in the future. ...
0
votes
1answer
197 views

About tbb tasks

When working with tasks, for example with this: class MyTask: public tbb::task { private: int x; private: void DoSomething(...){...} // Invoked only inside execute void ...
0
votes
2answers
368 views

parallel task in tbb

I have the following function that I want to run as parallel tasks: void WuManberFinder::find() so I wrote the following: void WuManberFinder::Parallel_find() { tbb::task_group g; for(auto i ...
1
vote
2answers
220 views

parallel_invoke same method in tbb

can I use parallel_invoke to execute the same function multiple times like I have function scan which traverse a string can I make the same multiple tasks operate on it.
1
vote
1answer
264 views

concurrent_unordered_map in c++

I have an algorithm that runs in serial, I am going to parallelise it. Now, this algorithm uses unordered_map in C++11. Can I substitute it with concurrent_unordered_map straight forward? I want just ...
1
vote
1answer
259 views

TBB concurrent_queue, how unsafe is unsafe_size?

The documentation is not very clear on how unsafe concurrent_queue::unsafe_size() is. The doxygen comment in the file tbb/internal/concurrent_queue.h mentions: Get size of queue; result may be ...
0
votes
1answer
111 views

Is parallel_do_feeder thread safe?

The following code has concurrency issues. Here inDegVec is a global int *, and getGUID() and getTime() are innocuous accessors for POD variables. void operator () ( GNode& src, ...
4
votes
3answers
1k views

Is it still worth to invest time into OpenMP implementations? [closed]

Since clang/llvm has no plan to support OpenMP any time soon, and Intel is going far away down the road of TBB library. Is it still worth to implement multi-thread scientific libraries (I am working ...
4
votes
1answer
201 views

Intel TBB: pool of graphs

I have a data processing model which is made of many chains of algorithms processing data chunks. Each chain is a graph of algorithms, which I implemented with the TBB graph class. Now I would like ...
0
votes
1answer
256 views

Using just the right number of logical processors

Is there a way that I can (using tbb from intel) specify the number of logical processors used by their parallel loops? Like i.e. I'd like to be able to detect number of logical processors and specify ...
0
votes
1answer
322 views

Strange errors in intel's tbb

I've build intel's tbb, and in my qt pro file I've included following line: INCLUDEPATH += "C:\\Downloads\\libraries\\tbb40_297oss\\include" but when I try to compile my project I'm getting an ...
0
votes
2answers
319 views

Using intel's tbb with qt

I've qt 4.8 with gcc 4.6.1 and I'd like to use intel's tbb in my project. What steps am I suppose to do in order to do that?
1
vote
3answers
169 views

Are TBB data objects usable with OpenMP?

I have a C++ program which is working quite well using OpenMP to parallelize loops. However, there are some pieces of code—those which employ queues and priority queues and the like—which would only ...
0
votes
1answer
165 views

Does Intel TBB library have feature to choose nomber of cores?

I am using Intel TBB to speed up a problem in graphics domain. I want to analyze the scalability of my method. To find the scalability I want run the same algorithm using 1, 2, 3 and 4 CPU cores. ...
3
votes
1answer
1k views

Parallel reduction of an array on CPU

Is there a way to do parallel reduction of an array on CPU in C/C++?. I recently learnt that it's not possible using openmp. Any other alternatives?
0
votes
3answers
583 views

Thread-safe lazy creation with TBB?

In my C++ code I'm keeping a pointer to an object which should be created lazily, i.e., created only upon request. I have following code, which is clearly not thread-safe. LAZY* get_lazy() { if ...
0
votes
1answer
525 views

C++ intel TBB inner loop optimisation

I am trying to use Intel TBB to parallelise an inner loop (the 2nd of 3) however, i only get decent pay off when the inner 2 loops are significant in size. Is TBB spawning new threads for every ...
1
vote
1answer
508 views

Error OpenCV with CUDA using TBB for multiple GPUs

My OpenCV CUDA program runs fine using a single NVidia 580GTX, but when using another, it gives the following error: OpenCV Error: Gpu API call (invalid device ordinal) in mallocPitch I know I ...
2
votes
2answers
852 views

C++: Thread Building Blocks - include hell

I can't get my C++ program to compile. As you can see, I'm writing a Node.js addon. Here is the code (Eamorr_addon.cpp): #include <iostream> #include <v8.h> #include <node.h> ...
1
vote
1answer
170 views

Concurrent factory/flyweight with TBB

I have a flyweight pattern working in serial where the factory uses std::map to store and provide access to the created objects. The factory returns an iterator that points to the object in the map. ...
1
vote
0answers
476 views

C++: Thread building blocks - need help getting started

I'm trying to get started with TBB. I want to implement a concurrent hash map (concurrent_hash_map) It should be keyed with a long int and return a char*... Here's the code I have sofar: #include ...
2
votes
1answer
1k views

Building/Linking to TBB under MinGW

I am building TBB under MinGW32 (on Windows 7 64 bit) and linking a simple program to it successfully. Unfortunately, my colleague is unable to do link successfully. We are both running the same ...
1
vote
1answer
349 views

Does boost or C++11 have identical mutex with tbb::queuing_mutex and tbb::spin_mutex?

Just wondering if boost or C++11 have identical mutex with tbb::queuing_mutex and tbb::spin_mutex?
3
votes
1answer
301 views

Very Basic for loop using TBB

I am a very new programmer, and I have some trouble with the examples from intel. I think it would be helpful if I could see how the most basic possible loop is implemented in tbb. for (n=0 ; n ...
2
votes
1answer
210 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. ... ...
1
vote
1answer
202 views

tbb::cache_aligned_allocator: Getting “request for member…which is of non-class type” with __m128i. User error or bug?

I'm trying to use __m128i as the value type of a cache-aligned vector with GCC, and I'm getting the following error: /usr/include/tbb/cache_aligned_allocator.h:105:32: error: request for member ...
0
votes
1answer
162 views

Not getting TBB to compile test examples

I am not getting TBB to work. I am following the steps in the "Getting started" document. I am doing the following steps: downloading the linux files + the sources files. extracting them in 1 ...
5
votes
5answers
1k 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 ...
2
votes
1answer
822 views

using TBB for non-parallel tasks

I want to get a thread-pool behavior using TBB. But whenever I read documents about TBB they always talk about parallel-for, parallel-dowhile etc. In contrast what I need is a main thread to assign ...
2
votes
1answer
179 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
302 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 ...
1
vote
1answer
167 views

How to allow DLLs compiled against different versions of Visual Studio in the same process to use Threading Building Blocks

In my DirectShow application I have a third party DLL (a 32bit DirectShow filter) that I don't have source for that links against the 32bit Windows version of Intel Threading Building Blocks ...
1
vote
1answer
214 views

TBB: local and global results in parallel_for

I have a question regarding local values in a parallel loop, and updating a global variable. Example, in pseudo-code: I am searching for a maximum value in a very long vector. I can do it in a loop, ...
3
votes
1answer
381 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 ...
4
votes
3answers
4k 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 ...
0
votes
1answer
279 views

TBB task allocation assertion

I'm trying to traverse a tree via TBB tasks and continuations. The code is below. When I run the code it keeps aborting (frequently, although not always) with the following error: Assertion ...
-1
votes
0answers
154 views

Segmentation fault without TBB atomic.h

I try to implement a parallel program with pthreads but I have a strange error. When I compile my code using "tbb/atomic.h" it works great. However, if I don't use it, I mean just using pthreads ...
0
votes
1answer
2k views

How to install TBB on Ubuntu? [closed]

I downloaded tbb40_233oss_lin.tgz file from http://threadingbuildingblocks.org/ver.php?fid=174 I set "TBBROOT" variable to the directory in my bash_proflie and I unzipped the tar file and navigated ...