OpenMP is a cross-platform multi-threading API which allows fine-grained task parallelization and synchronization using special compiler directives.

learn more… | top users | synonyms

0
votes
0answers
15 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
1answer
60 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
33 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
23 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
25 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
20 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
46 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
55 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
21 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
26 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
20 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
30 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
27 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
44 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
48 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
46 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
45 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
37 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
38 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
41 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
46 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
65 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
49 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
47 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
55 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
129 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 ...
0
votes
0answers
48 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
44 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
66 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
41 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
20 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
46 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
36 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
55 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
46 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
28 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
84 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
22 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 ...
0
votes
0answers
39 views

Parallelizing thrice nested for loop openMP

First off I'm very new to OpenMP (began reading up on it yesterday), so this question is probably very very noob. I have gone through quite a lot of openMP related questions on stack overflow. Also ...
0
votes
0answers
62 views

OpenMP !$OMP PRIVATE and Fortran Modules

I have a large code, where a combination between MPI and OpenMP is used. In order to prohibit data override, the arrays have and extra index corresponding to the OpenMP thread ID. For an example the ...
0
votes
1answer
96 views

Integrating gcc 4.8 with Xcode 4.x

I am trying to use OpenMP in a objective-c++ program. Unfortunately llvm-gcc 4.2 seems to have serious bug when working with OpenMP. According to my researches, the best solution should be using gcc ...
0
votes
1answer
25 views

OpenMP dependency and synchronization query

I have to parallelize a function in a serial numerical methods code on OpenMP. its structure is as follows; int x = 0,y; for(l=0;l <= 1 ;l++){ y = 0; for(j = Xarr[l];j < Xarr[1+l];j++){ ...
0
votes
0answers
26 views

The program will crash if it called one functionusing OpenMP from a DLL

all I ran into a strange problem. I use one function FuncA from one dll. The Function FuncA uses OpenMP directives to speed up the computation. My program will crash. But if I comment out the OpenMP ...
2
votes
2answers
106 views

Why is threaded Random SO slow, - ( Or where is my code wrong! )

I've been having trouble getting a threaded C++ Random number generator to outperform the standard rand() on a single core. (I do also see issues with multiple threads calling rand() ) I know there ...
1
vote
1answer
75 views

fortran openmp nested loop communication overhead

My goal is to move away from MATLAB and toward doing most of my work in Fortran. One of these efforts has been substituting parallelization via MATLAB's parfor loop with Fortran openMP directives. ...

1 2 3 4 5 24