Tagged Questions
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) {
...
2
votes
0answers
159 views
Is the Intel Xeon Phi usable without a costly Intel Compiler?
Does the Intel Xeon Phi coprocessor, to be usable as parallel platform, require a license of the Intel Composer XE compiler, or are there alternative compilers?
0
votes
0answers
51 views
Vtune Amplifier XE for Multicores?
I'm using Intel Vtune Amplifier XE 2013 to profile a parallel program running on a multicore CPU, in particular it is written in OpenCL and executed in Xeon Phi. I wonder how should be the exact ...
1
vote
1answer
177 views
How to parallel 4 works with PARFOR with a Core i3 in Matlab
I have Matlab R2012b for Ubuntu 64 bits. I have a Intel Core i3 CPU M 330 @ 2.13GHz × 4.
I want to use parfor to parallelize 4 loops at same time. Because Intel Core i3 has 2 Cores and 4 Threads I ...
0
votes
3answers
122 views
Higher core load Intel TBB
I am using Intel TBB parallel_for to speed up a for loop doing some calculations:
tbb::parallel_for(tbb::blocked_range<int>(0,ListSize,1000),Calc);
Calc is an object of the class doCalc
...
0
votes
0answers
45 views
Parallel Program Made in Array Building Block runs slower than my sequencial program
I have made a program of LU Decomposition using Gauss Elimination method in Intel Array Building Block but it is running quite slow.
For a 512 x 512 matrix time for my serial and parallel programs ...
7
votes
1answer
397 views
pause instruction in x86
I am trying to create a dumb version of a spin lock. Browsing the web, I came across a assembly instruction in x86 which is used to give hint to a processor that a spin-lock is currently running on ...
0
votes
4answers
703 views
LOCK prefix of Intel instruction. What is the point? Its function is so limited
I read the Intel manual and found there is a lock prefix for instructions, which can prevent processors writing to the same memory location at the same time. I am quite exited about it. I guess it ...
1
vote
2answers
52 views
intensive computation parts in the sequential code
I have written a sequential code of the algorithm. I am going to parallelize it, but I have to determine which parts of the sequential code are worth to be parallelized. How I can find these parts? ...
2
votes
2answers
231 views
Parallel computing over a function from linked library in C
I am new to parallel computing and searching for options and tricks.
My present problem is to find 232 independent linear equations of type B = AX; where dimensions of A[8x8], B[8x1] and X[8x1]; A is ...
0
votes
1answer
76 views
How do I know if a vector function (SIMD) really worked on multiple objects at a time?
I am trying to understand whether my compiler interprets my vector notation as single objects (equivalent to a for loop) or works on multiple data at a time.
Does anyone know how I do it? I have ...
2
votes
1answer
567 views
Cannot compile code using Intel Cilk
I use Intel Parallel Studio XE 2011 .It says it supports Cilk.When I include a cilk_for statement in the code it does not compile.It says symbol undefined.I have included the cilk.h at the beginning ...
2
votes
2answers
363 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
2k 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 ...
0
votes
0answers
273 views
Code breaks on putting a parallel_for
I am parallelizing a loop using Intel's tbb and it breaks when I run it pointing me to this function in task.h
//! Spawn task allocated by allocate_root, wait for it to complete, and deallocate it.
...
2
votes
1answer
258 views
Is Intel Software Development Suite worth the cost?
(this is a partial duplicate of Are the Intel compilers worth it?)
The Intel Software Development Suite includes the C++ compiler, IPP, VTune, Thread Checker.
The Intel Parallel Studio includes the ...
9
votes
1answer
984 views
Intel TBB license [closed]
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 ...
