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

1
vote
1answer
18 views

Minimising number of calls to std::max in nested loop

I'm trying to reduce the number of calls to std::max in my inner loop, as I'm calling it millions of times (no exaggeration!) and that's making my parallel code run slower than the sequential code. ...
1
vote
1answer
28 views

How to search hash_map containing reference_wrapper?

I'm using Intel TBB Concurrent Hash Map tbb::hash_map<std::string, std::reference_wrapper<Clusters>> and I want to search this hash_map using tbb::concurrent_hash_map<std::string, ...
1
vote
0answers
50 views

TBB possible memory leak

Test program: #include <tbb/parallel_invoke.h> int main(void) { tbb::parallel_invoke([]{},[]{}); return 0; } Compiled using g++ -std=c++11 tmp.cpp -ltbb Checked with valgrind ...
0
votes
2answers
67 views

No Speedup achieved using Parallel_Scan Component of Intel Thread Building Blocks (TBB)

I am exploring Parallel_Scan component in Intel Thread Building Blocks which is used in case of an associative operation and i am finding that Parallel_Scan is taking 10 times more than it would have ...
1
vote
1answer
58 views

Atomic operators, SSE/AVX, and OpenMP

I'm wondering if SSE/AVX operations such as addition and multiplication can be an atomic operation? The reason I ask this is that in OpenMP the atomic construct only works on a limited set of ...
0
votes
2answers
105 views

Building OpenCV 2.4.5 with TBB - missing tbb_debug.lib

I'm trying to compile OpenCV 2.4.5 with MSVC2010 Express under win64 LINK : fatal error LNK1104: cannot open file 'tbb_debug.lib' All my paths are set correctly in cmake. It appears that in my ...
1
vote
0answers
58 views

What is a good design for nested stl containers with multi-threading

I am having a hard time to figure out what can be a well-organized and efficient design for the following objects that I have as part of a bigger project. Please note that I am having multiple ...
0
votes
2answers
64 views

Intel TBB Code having different execution time in windows and linux

I am trying to parallelize my code which is designing FIR Filter.For that i have chosen parallel_reduce .when i am executing code on windows it takes 15s and the same code when i am executing on linux ...
0
votes
1answer
64 views

Filling array with random numbers using Intel TBB

I have two different functions to fill a global array with random numbers: A serial version and a parallel version using lamba expression and TBB. void get_data(void) { int j = 0; ...
1
vote
0answers
36 views

TBB concurrent_queue errors

Can't seem to compile program with even a mention of concurrent_queue. code contains this #include <tbb/concurrent_queue.h> And second I add anywhere in the code concurrent_queue<int> ...
0
votes
1answer
45 views

TBB concurrent_hash_map operator[] or similar access?

Is there a reason why you can't access the concurrent_hash_map using the square bracket operators? I've been doing this in order to ease the code readability (on keys that should be in the map): ...
0
votes
1answer
57 views

How to specify loop step in Intel TBB's parallel_for loop?

I wanted to do something like this (pseudo code) utilizing intel TBB's library: some function( int index, Mat data, vector<int> other ) { } int start = 0 int end = 100 int step = 5 ...
0
votes
1answer
93 views

Task continuations in Intel TBB

Is there anything similar to PPL's task continuations in TBB? I am aware of the low level TBB method of manuall allocating tbb::tasks and manually allocating continuation tasks too and managing ref ...
0
votes
1answer
88 views

parallel word count

I am trying to write a parallel version of wc. I am using TBB library, but unfortunately something is going wrong, and I don't know how to fix the errors. My code #include<string> ...
11
votes
8answers
612 views

Parallelizing a for loop gives no performance gain

I have an algorithm which converts a bayer image channel to RGB. In my implementation I have a single nested for loop which iterates over the bayer channel, calculates the rgb index from the bayer ...
1
vote
2answers
53 views

Thread-safe TBB scalable allocator

Recently I switched from system memory management (malloc/free) to Intel's TBB scalable allocator. The problem is I cannot find any info if it's thread-safe. Whole TBB is built around threads, so it ...
0
votes
1answer
24 views

Intel TBB on Win CE for developing mobile applications?

i want to know whether we can use INTEL TBB for developing mobile applications on Window CE. i was searching for the material but unable to found any .Basically two things i want to know whether ...
0
votes
0answers
50 views

Cannot define mutex inside tbb::concurrent_unordered_map

I know multiple threads could concurrently access concurrent_unordered_map. And within each map entry, I want to have a mutex. Please look at this simple piece of code: struct MyStruct { int a; ...
2
votes
1answer
91 views

Difference between TBB Concurrent Vector and STL Vector?

TBB Concurrent Vector we can dynamically resize by using grow_by and grow_to_at_least .And in STL Vector there is also resize function .So what is the difference? The difference which i came across ...
3
votes
1answer
52 views

From explicit threading to TBB

Assuming I have a parallel algorithm that uses explicit threading with one or two locks for synchronization and is optimized to take advantage of cache lines (including shared L3 cache between ...
0
votes
1answer
32 views

TBB: initialize concurrent_hash_map

I am trying to initialize a 2D concurrent_hash_map, a container available in the Intel TBB library. Compilation passes and there is no error at runtime. However, not all initialized values are ...
0
votes
2answers
185 views

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 code: void parallel_relax( Class object, std::vector<Vertex *> verList ) { ...
2
votes
1answer
131 views

How does Intel TBB concurrent_queue work? Does it achieve fine-grained parallelism?

I am new to Intel TBB. I am using concurrent_queue in order to achieve fine-grained parallelism in my project. I got few doubts. This is how i am implementing. thread_fun(arguments) { ...
0
votes
1answer
34 views

tbb worker model

Suppose there are some worker objects which contains some internal resource such as socket. Those worker objects are created at the program startup and destroyed at program exit. The main thread will ...
0
votes
1answer
53 views

Running TBB code on windows 7 using code blocks

i have installed TBB setup for windows 7 and want to execute code in it.i don't have visual studio setup and i have code blocks IDE. i want to execute my TBB code in it.Pls Help to configure Code ...
0
votes
1answer
35 views

How to terminate and stop the task in TBB?

I am facing one issue in which i have two tasks running, one is parent task and one is child task and child task is running one infinite loop and in which some condition is satisfied i want to ...
0
votes
1answer
33 views

lambda expression error: expression must be a modifiable lvalue

Ok, the codes are: vector<vector<double>> imageFiltered; // some processing codes here parallel_for( blocked_range<unsigned>(0, imageFiltered.size()), [=](const ...
0
votes
1answer
124 views

TBB parallel_for with less number of threads

I have written a multi-view face detection code using opencv face detector. I am running five detectors (trained for different pose angles) over an image and taking their weights to detect faces in an ...
0
votes
1answer
47 views

Recycling parent as child in tbb

I and want to parallelise a seemingly straightforward problem using tbb::tasks. My tasks can be split into sub-tasks, the number of which cannot be chosen, but is determined by the state of the task ...
0
votes
0answers
44 views

TBB tbb::memory_pool<tbb::scalable_allocator<char>> How to use it correctly?

I have doubt. For tbb::memory_pool< tbb::scalable_allocator > shared_memory_pool_; if that is instantiated in the main thread. And than, I called shared_memory_pool_.malloc(sizeof(my_class)) in a ...
0
votes
1answer
128 views

Can't compile basic C++ program with TBB and lambda

I tried to write a basic C++ program using TBB and lambda expression, but I can't compile it. #include <iostream> #include <cstdlib> #include <tbb/parallel_for.h> #include ...
0
votes
4answers
122 views

Parallel Execution taking more time than Serial?

i am studying task implementation in TBB and have run code for parallel and serial calculation of Fibonacci Series. The Code is : #include <iostream> #include <list> #include ...
0
votes
0answers
188 views

Building OpenCV with TBB and IPP

I'm trying to build OpenCV with TBB and IPP. I have installed IPP and TBB. And the CMake GUI automatically detects IPP. My Problem however is when I'm building the OpenCV using mingw32-make. I keep ...
1
vote
2answers
94 views

Equivalent of std::deque at in tbb::concurrent_queue container?

I am using std::deque at function to access elements without popping from the queue since i am using the same queue in different iterations. My solution is based on coarse-grained multithreading. Now ...
0
votes
1answer
104 views

tbb concurrent hash maps: how to compare and set

I need to update the contents in concurrent_hash_map provided by TBB in a CAS fashion. That is, if a key is already present, I look at the value corresponding to the key and update the value in an ...
1
vote
1answer
79 views

Tbb parallel pipeline inplace modification of tokens

I want to use tbb pipeline to parallelize proccessing of tokens. But I don't need to deallocate and reallocate tokens during middle filters. Is it ok to simply modifiing it in-place and return it? ...
0
votes
1answer
383 views

OpenCV configure with TBB for ARM (Ubuntu, 3.0.63)

I'm trying to compile OpenCV libs with TBB support for odroid U2 (with Quad core ARM Cortex-A9 MPCore). I have no problem with compile current OpenCV (from github) without TBB. And also I have no ...
1
vote
0answers
109 views

SAS benchmark speed [closed]

I'm interested if there are any publicly available benchmarks on the speed of the statistical software SAS, in comparison to say c++ implementations for similar problems. I'm especially interested in ...
1
vote
0answers
197 views

tbb::parallel_for running out of memory on machine with 80 cores

I am trying to use tbb::parallel_for on a machine with 160 parallel threads (8 Intel E7-8870) and 0.5 TBytes of memory. It is a current Ubuntu system with kernel 3.2.0-35-generic #55-Ubuntu SMP. TBB ...
1
vote
2answers
216 views

How to speed up this code implemented OpenCV

I need an advice for sample below code that requires lots of time for processing. I am developing project on OpenCV and have code blocks like this ( some of them are pictures ). What should I use for ...
1
vote
0answers
63 views

Intel TBB - Eclipse reports multiple build errors

I'm using Eclipse CDT. I downloaded 4.1 for windows. I added the include folder to my project by going to my project's properties, then adding the folder in C/C++ General >> Paths and Symbols >> ...
0
votes
0answers
61 views

task_scheduler_init causes segmentation fault

I run my program using task scheduler init, since need to set the number of threads in use: int main(int argc, char** argv) { task_scheduler_init init(P+2); task_group tg; Everything seems ...
0
votes
1answer
108 views

What does taskset in linux exactly do?

I have a program running on a 32 core system using Intel TBB. The problem I have is when I set the program to use 32 threads, the performance doesn't gain enough compared to 16 threads (only 50% ...
1
vote
3answers
431 views

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 under Ubuntu system's C++ compiler, and I don't why. to be brief: turn this for ...
0
votes
1answer
152 views

c++ In lambda function - error: invalid type argument in tbb::parallel_for

New to tbb and lambdas in c++ and having compiler errors on the following code: template <class ObjT, class Stepper> class GroupStepper : public Stepper { public: typedef ...
1
vote
0answers
92 views

Parallel Simulation with Intel TBB in VS2010 using MKL for rng

I need to find the default probability of a derivative via Monte-Carlo simulation with C++ in VS2010 with Intel TBB and MKL installed and only 1GB of memory. Let S(t) denote the price of the ...
0
votes
0answers
66 views

Compile R package with TBB

I want to compile R package by using TBB (Threading Building Blocks). I used a simple example in the internet to test whether it is possible to develop R packages with TBB or not. I create Makevars ...
0
votes
1answer
277 views

Microsoft TPL (Task parallel library) vs Intel TBB (Threading Building Block) [closed]

My question is, as the title says : On a general level (ease of usage, degree of control over what happens, etc) which one would you recommend for a small parallel program ? Microsoft's TPL or Intel's ...
0
votes
1answer
135 views

TBB need condition_variable for task synchronization

I'm using tbb for some project, and i'm forced to use tbb tasks. My program has N tasks, who are interact. Pseudo code goes like this: class Task; Task* t[N]; class Task { startTask(Task ...
2
votes
2answers
205 views

Opencv cascade train time

I use opencv_traincascade for training using following parameters opencv_traincascade -data cascade_model -vec ..\create_template\pos_vec_file -bg ..\BG\bg.txt -featureType LBP -w 32 -h 32 -numPos ...

1 2 3 4 5