OpenMP is a cross-platform multi-threading API which allows fine-grained task parallelization and synchronization using special compiler directives.
0
votes
1answer
17 views
Parallelizing QuickHull: OpenMP gives small speedup whilst TBB gives negative speedup
I'm a beginner when it comes down to shared-memory programming using OpenMP and TBB.
I'm implementing a parallel version of the QuickHull algorithm (http://en.wikipedia.org/wiki/QuickHull) to find ...
0
votes
0answers
16 views
Why is the OpenMP reduction clause needed to make reductions concurrent?
The OpenMP 'parallel' construct and 'SIMD' construct (new in revision 4.0) define the reduction clause which tells the compiler which variable the reduction is performed on and what is the reduction ...
0
votes
0answers
43 views
OpenMP parallelization of a for loop with function calls
Using OpenMP, is it correct to parallelize a for loop inside a function "func" as follows?
void func(REAL coeff, DATAMPOT *dmp, int a, int la, int b, int lb, REAL L)
{
int i,j,k;
REAL ...
0
votes
1answer
35 views
maximum number of variables in private() clause in OpenMP
I want to know whether there is any limitation on number of variables that can be defined in a private() clause in OpenMP.
I have a code which has 4 for loops with lot of variables. The outermost ...
0
votes
0answers
40 views
openMP pragma for doesn't improve the performance [duplicate]
I'm trying to improve the overall execution time of my code using openmp. here is the code:
#pragma omp for private(y, x, bufi0)
for (y = 0; y < h; y++)
{
bufi0 = ksize-1;
...
-2
votes
0answers
24 views
OpenMP, different usage private, firstprivate, lastprivate
Currently, I am facing some confusion regarding the keyword private, firstprivate, and last private. I try to find some tutorial in the internet, but all of them doesn't help me. from what i've ...
2
votes
1answer
40 views
Internal compiler error with nested functions in OpenMP parallel regions
I tried to call the Monte Carlo integration subroutine of GSL library to do some numerical calculation. Because my for loop is rather simple, meaning the results of different runs are independent, I ...
0
votes
2answers
43 views
Reasons for omp_set_num_threads(1) slower than no openmp
I believe everyone agree with the title of this post. Can someone point me the reason ? Any reference to that like book etc ? I have tried to find but no luck.
I believe the reason is something about ...
1
vote
2answers
197 views
Parallelizing the Gaussian Blur Algorithm with OpenMP
I was trying to parallelize the gaussian blur function using OpenMP,
but I am new at OpenMP, and when I tried to parallelize the two for loops (I don't think there are any variables that need to be ...
1
vote
0answers
37 views
non parallelizable loop in jomp and openmp
i have a next loop
for(int i=1;i<n;i++){
a[i]=(a[i]+a[i-1])/2;
}
obviously that this loop isn't parallelizable
because the result of each element depends on the element that before it
anyway
i ...
0
votes
0answers
26 views
Handle openmp task as objects, save in list
I have an application where I need to create dynamically tasks inside a recursion which should be saved in a data structure (suppose list), so that other handler threads can "pick up a task from the ...
1
vote
1answer
37 views
openmp fortran program crash
i try to modify a simple reading code from serial to openmp.
I can't able to understand what kind of error message i have, if there is a problem with the code, whit the intel fotran compiler or ...
0
votes
1answer
28 views
Can we use OpenMP with latest version of openCV
I want to parallelize my image processing codes using openMP. I have a doubt if OpenMP is supported by the latest versions of OpenCV like 2.4.4 or 2.4.5 versions. I know abt TBB but looks too ...
3
votes
2answers
47 views
Openmp Reduction for operator “-”
int main()
{
int a=0;
omp_set_num_threads(2);
#pragma omp parallel reduction(+ : a)
{
a = omp_get_thread_num()+1;
}
std::cout << "Output:" << a;
return ...
1
vote
1answer
62 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
0answers
24 views
Use of private variables in openmp
I have some code fragments here where what I think as correct is not given as the answer. I need some help to clarify this.
given answer for parallelizing this code doesn not say k should be private. ...
0
votes
1answer
27 views
What is Parallel for usage in different for loops?
I have some code fragments here where what I think as correct is not given as the answer. I need some help to clarify this.
dotp=0;
for (i=0;i<n;i++){
dotp+= a[i]+b[i];
}
given answer for ...
1
vote
1answer
23 views
Programatically testing for openmp support from a python setup script
I'm working on a python project that uses cython and c to speed up time sensitive operations. In a few of our cython routines, we use openmp to further speed up an operation if idle cores are ...
0
votes
1answer
31 views
Parallel OpenMP reduction vs. function definition?
I'm using OpenMP but the problem is that I'm declaring/defining a function as follow:
void compute_image(double pixel[nb], double &sum)
{
#pragma omp parallel for reduction(+:sum)
for ...
0
votes
1answer
29 views
OpenMP count the number of iteration in cycle which is making each thread
I decided to count the number of iteration in cycle which is making each thread.
So i must to declare variable and get the thread number of each iteration right?
i got the number of threads just like ...
2
votes
2answers
46 views
What is the usage of reduction in openmp?
I have this piece of code that is parallelized.
int i,n; double area,pi,x;
area=0.0;
#pragma omp parallel for private(x) reduction (+:area)
for(i=0; i<n; i++){
x= (i+0.5)/n;
area+= 4.0/(1.0+x*x);
...
0
votes
1answer
50 views
OpenMP C++ (trouble with compliling)
I decided to calculate e as the sum of rows to get 2.718....
Well my code without OpenMP works perfectly and I measured the time which it is taking for calculations. When I used OpenMP to parralelize ...
0
votes
1answer
47 views
Nested loop in OpenMP
I need to run a short outer loop and a long inner loop. I would like to parallelize the latter and not the former. The reason is that there is an array that is updated after the inner loop has run. ...
2
votes
2answers
55 views
How to hint OpenMP Stride?
I am trying to understand the conceptual reason why OpenMP breaks loop vectorization. Also any suggestions for fixing this would be helpful. I am considering manually parallelizing this to fix this ...
1
vote
1answer
49 views
Does the keyword “shared” prevent race conditions?
I'm unclear what "shared" does in openMP. I see that the spec states that shared "declares one or more list items to be shared by tasks..." but that seems unclear to me.
For example, if I have the ...
0
votes
0answers
19 views
How to have console output for Intel ManyCore Lab batch jobs?
I'm currently testing an OpenMP parallel program on Intel's ManyCore Testing Lab computers, and have been using
qsub -l select=1:ncpus=30 $HOME/myjob
to add the job and run it. It puts the output ...
0
votes
1answer
49 views
Makefile leads to compilation error
I'm trying to compile a program (which isn't mine):
make -f makefile
... using the following makefile:
# Compiler for .cpp files
CPP = g++
# Use nvcc to compile .cu files
NVCC = nvcc
NVCCFLAGS = ...
2
votes
1answer
44 views
Thrust OpenMP without CUDA?
Can I use Thrust with the OpenMP device system if my machine doesn't have a CUDA GPU? If so, do I still require the CUDA toolkit?
0
votes
0answers
39 views
set number of threads relative to number of idle threads
I have set a limit on the number of threads my program can use, it is set at 20 (out of 64 possible, using omp_set_num_threads(20)). I have done this to show consideration to other users, but often ...
0
votes
0answers
44 views
openmp crashing when using more than 1 thread
I have this piece of code and I'm trying to parallelize the execution of the for loop. It works ok if using just one thread, but it crashes when using more than 1 thread calling the function runTest.
...
0
votes
0answers
71 views
Proper use of ordered parallel for in OpenMP?
This little code runs fine when compiled with GCC, but when I compile it with PGCC it runs slower than cold molasses, i.e. several minutes to perform just 1000 additions!:
#include <stdio.h>
...
0
votes
2answers
47 views
Parallel hasing using openmp
I have a piece of code for parallel hashing, the insert code is as follows:
int main(int argc, char** argv){
.....
Entry* table;//hash table
for(size_t i=0;i<N;i++){
keys[i]=i;
...
1
vote
1answer
69 views
How to speed up simple Fortran OpenMP?
I have a simple Fortran program in which the main component is a 4-core OpenMP portion that calculates a dot product
OMP_NUM_THREADS=4
...
Do 30 k=1,lines
co(k)=0
si(k)=0
co_temp=0
si_temp=0
...
0
votes
1answer
52 views
Strange output for a simple OpenMP program on Multi2sim v4.0.1
I'm trying to run a simple program using OpenMP
the program is as follows
#include <iostream>
#include <fstream>
#include <vector>
#include <omp.h>
#include ...
0
votes
2answers
53 views
C++ OpenMP exit while loop inside a parallel for
I use Visual Studio 2010 and OpenMP on a Windows 7 machine. I've written the following code snipplet:
#pragma omp parallel for
for(int jj=0;jj<2;jj++){
MSG msg;
// do something in parallel for jj
...
1
vote
3answers
56 views
OpenMP iteration for loop in parallel region
Sorry if the title's a big unclear. I don't quite know how to word this.
I'm wondering if there's any way I can do the following:
#pragma omp parallel
{
for (int i = 0; i < iterations; i++) {
...
3
votes
1answer
131 views
Lost/confused in optimizing
I just completed a computer graphics course, where we had to program a ray tracer. Though all the results were correct, I was confused about the use of OpenMP (which BTW was not part of the course). I ...
1
vote
0answers
63 views
Canon SDK: Download latest picture taken by two devices to host
I'm writing an windows based application in Visual Studio 2010. My host PC is connected to two Canon EOS 600D. So far I managed two take a picture, download it directly (without a SD card) to the host ...
0
votes
1answer
48 views
How to Implement embarrassingly parallel task (FOR loop) WITHOUT MPI-IO?
Preamble:
I have a very large array (one dim) and need to solve evolution equation (wave-like eq). I I need to calculate integral at each value of this array, to store the resulting array of integral ...
2
votes
3answers
68 views
openmp optimising (why openmp is much slower than sequential way?)
I am a newbie in programming with OpenMp. I wrote a simple c program to multiply matrix with a vector. Unfortunately, by comparing executing time I found that the OpenMP is much slower than the ...
1
vote
0answers
42 views
OpenMP for loops that are nested between classes
With openmp 3.0 and higher in order to nest for loops I have read that you can add the collapse() directive to specify how many nested loops should be parallelized. However, I would like to ...
0
votes
0answers
21 views
cannt hide the parent window which has got the handle from openCV in openmp section
I have the following method, but the problem is that in when I run the pogram(relsease or debug modes) when I try to hide the window to be able to show the screen attached to the main window, it ...
1
vote
1answer
52 views
OpenMP in FORTRAN does not run expected number of threads
I am new to parallel programming, and am having trouble getting a simple parallel Fortran program to use multiple threads in OpenMP. The following program:
Program Hello
Use omp_lib
...
0
votes
2answers
37 views
Order of execution in Reduction Operation in OpenMP
Is there a way to know the order of execution for a reduction operator in OpenMP? In other words, I would like to know how the threads execute reduction operation- is it left to right? What happens ...
2
votes
1answer
56 views
Why does while loop in an OMP parallel section fail to terminate when termination condition depends on update from different section
Is the C++ code below legal, or is there a problem with my compiler? The code was complied into a shared library using
gcc version 4.4.6 20110731 (Red Hat 4.4.6-3) (GCC)
and openMP and then called ...
0
votes
0answers
49 views
openmp pragma omp single statement
I have the following source code compiled at gcc 4.4.6,
struct data{
int seqno ;
struct data *next ;
} ;
struct testsum
{
long int sumx ;
char nouse[120] ;
} ;
struct testsum ...
0
votes
1answer
29 views
Is a copy constructor needed for my OpenMP parallelization?
I ran into errors while I was parallelizing my function below.
bool
CMolecule::computeForces_twobody(vector<CMolecule*> &mols,
vector<CPnt> & force, ...
0
votes
3answers
85 views
segmentation fault when using omp parallel for, but not sequentially
I'm having trouble using the #pragma omp parallel for
Basically I have several hundred DNA sequences that I want to run against an algorithm called NNLS.
I figured that doing it in parallel would ...
0
votes
0answers
23 views
Possible error with object pointer copying during OpenMP parallelization
Sorry to ask questions about this part of my code again. Last time it was about the parallelization scheme with OpenMP. Now I suspect that I might have errors in copying pointers of class objects. ...
1
vote
1answer
28 views
Splitting a sub-thread into new sub-threads (Openmp)
I have a question about multi-threading (Openmp and C-code).
I'm going to perform a search after 16 different words in a given text file. The way to do it is to make a for-loop that runs through an ...

