OpenMP is a cross-platform multi-threading API which allows fine-grained task parallelization and synchronization using special compiler directives.
0
votes
2answers
2k views
parallel openmp c#
please help me to make this code parallel using openmp
this code is run on button click and the text box is 128
using System;
using System.Collections.Generic;
using System.ComponentModel;
using ...
10
votes
4answers
3k views
OpenMP and Python
I have experience in coding OpenMP for Shared Memory machines (in both C and FORTRAN) to carry out simple tasks like matrix addition, multiplication etc. (Just to see how it competes with LAPACK). I ...
5
votes
1answer
2k views
OpenMP and CPU affinity
Will sched_setaffinity or pthread_attr_setaffinity_np work to set thread affinity under OpenMP?
Related: CPU Affinity
20
votes
4answers
9k views
Parallelization: pthreads or OpenMP?
Most people in scientific computing use OpenMP as a quasi-standard when it comes to shared memory parallelization.
Is there any reason (other than readability) to use OpenMP over pthreads? The ...
6
votes
3answers
5k views
Pthreads vs. OpenMP
I'm creating a multi-threaded application in C using Linux.
I'm unsure whether I should use the POSIX thread API or the OpenMP API.
What are the pros & cons of using either?
Edit:
Could ...
6
votes
2answers
8k views
How to ensure a dynamically allocated array is private in openmp
I'm working in C with openMP using gcc on a linux machine. In an openmp parallel for loop, I can declare a statically allocated array as private. Consider the code fragment:
int a[10];
#pragma omp ...
2
votes
2answers
719 views
Conditional “pragma omp”
I am trying different kinds of parallelization using OpenMP. As a result I have several lines of #pragma omp parallel for in my code which I (un-)comment alternating. Is there a way to make these ...
5
votes
1answer
2k views
OpenMP for MinGW w64?
Are there any OpenMP binaries out there for the MinGW-w64 GCC compiler (Windows)?
5
votes
2answers
5k views
How does the SECTIONS directive in OpenMP distribute work?
In OpenMP when using omp sections, will the threads be distributed to the blocks inside the sections, or will each thread be assigned to each sections?
When nthreads == 3:
#pragma omp sections
{
...
3
votes
1answer
1k views
Compilation fails with OpenMP on Mac OS X Lion (memcpy and SSE intrinsics)
I have stumbled upon the following problem. The below code snippet does not link on Mac OS X with any Xcode I tried (4.4, 4.5)
#include <stdlib.h>
#include <string.h>
#include ...
2
votes
1answer
161 views
reduction with OpenMP with SSE/AVX
I want to do a reduction on an array using OpenMP and SIMD. I read that a reduction in OpenMP is equivalent to:
inline float sum_scalar_openmp2(const float a[], const size_t N) {
float sum = ...
36
votes
2answers
1k views
Does multithreading emphasize memory fragmentation?
Description
When allocating and deallocating randomly sized memory chunks with 4 or more threads using openmp's parallel for construct, the program seems to start leaking considerable amounts of ...
12
votes
4answers
3k views
In multithreaded C/C++, does malloc/new lock the heap when allocating memory
I'm curious as to whether there is a lock on memory allocation if two threads simultaneously request to allocate memory. I am using OpenMP to do multithreading, C++ code.
OS's: mostly linux, but ...
9
votes
3answers
980 views
C++11 Thread safety of Random number generators
In C++11 there are a bunch of new Random number generator engines and distribution functions. Are they thread safe? If you share a single random distribution and engine among multiple threads, is it ...
9
votes
1answer
2k views
OpenMP: poor performance of heap arrays (stack arrays work fine)
I am a fairly experienced OpenMP user, but I have just run into a puzzling problem, and I am hopeful that someone here could help. The problem is that a simple hashing algorithm performs well for ...
21
votes
2answers
6k views
openMP, atomic vs critical?
What is the difference between atomic and critical in openMP?
I can do this
#pragma omp atomic
g_qCount++;
but isn't this same as
#pragma omp critical
g_qCount++;
Thanks in advance
6
votes
2answers
359 views
In an OpenMP parallel code, would there be any benefit for memset to be run in parallel?
I have blocks of memory that can be quite large (larger than the L2 cache), and sometimes I must set them to all zero. memset is good in a serial code, but what about parallel code ?
Has somebody ...
4
votes
3answers
3k views
OpenMP: What is the benefit of nesting parallelizations?
From what I understand, #pragma omp parallel and its variations basically execute the following block in a number of concurrent threads, which corresponds to the number of CPUs. When having nested ...
10
votes
2answers
427 views
Parallel for vs omp simd: when to use each?
OpenMP 4.0 introduces a new construct called "omp simd". What is the benefit of using this construct over the old "parallel for"? When would each be a better choice over the other?
10
votes
1answer
774 views
Why aren't unsigned OpenMP index variables allowed?
I have a loop in my C++/OpenMP code that looks like this:
#pragma omp parallel for
for(unsigned int i=0; i<count; i++)
{
// do stuff
}
When I compile it (with Visual Studio 2005) I get the ...
5
votes
3answers
5k views
How to use lock in openMP?
I have two piece of C++ code running on 2 different cores.
Both of them wirte to the same file.
How to use openMP and make sure there is no crash?
3
votes
2answers
3k views
How to check the version of OpenMP on Linux
I wonder how to check the version of OpenMP on a Linux remote machine? I don't know where it is installed either.
Thanks and regards!
1
vote
2answers
232 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
1answer
229 views
How does the omp ordered clause work?
vector<int> v;
#pragma omp parallel for ordered schedule(dynamic, anyChunkSizeGreaterThan1)
for (int i = 0; i < n; ++i){
...
...
...
#pragma omp order
...
0
votes
1answer
233 views
Parallel algorithm to find the K closest points
I implemented the following code that use the data points in "dat" to calculate the distance matrix between each point and all the other points "dist". Then I use this distance matrix to find the K ...
0
votes
2answers
338 views
openmp parallel performance
I'm trying to implement the distance matrix in parallel using openmp in which I calculate the distance between each point and all the other points, so the best algorithm I thought of till now cost ...
5
votes
1answer
824 views
Are pointers private in OpenMP parallel sections?
I've added OpenMP to an existing code base in order to parallelize a for loop. Several variables are created inside the scope of the parallel for region, including a pointer:
#pragma omp parallel ...
4
votes
2answers
508 views
OpenMP parallelisation of pi calculation is either slow or wrong
I'm having trouble parallelising my monte carlo method to calculate pi. Here is the parallelised for-loop:
#pragma omp parallel for private(i,x,y) schedule(static) reduction(+:count)
for (i = 0; i ...
3
votes
1answer
1k views
AMD multi-core programming
I want to start to write applications(C++) that will utilize the additional cores to execute portions of the code that have a need to perform lots of calculations and whose computations are ...
2
votes
2answers
262 views
parallel iterative algorithms for solving Linear System of Equations
Does someone know any library or ready source code of parallel implementation of quick iterative methods (bicgstab, CG, etc) for solving Linear System of Equations for example using MPI or OpenMP?
1
vote
1answer
1k views
1
vote
2answers
749 views
How to do allocation of pointers in subroutines when using OpenMP?
As the following code sample shows, the main program tries to utilize OpenMP to call a subroutine. In that subroutine, a local pointer variable is created and iterated. The program generates Subscript ...
24
votes
8answers
11k views
C++ Parallelization Libraries: OpenMP vs. Thread Building Blocks [closed]
I'm going to retrofit my custom graphics engine so that it takes advantage of multicore CPUs. More exactly, I am looking for a library to parallelize loops.
It seems to me that both OpenMP and ...
19
votes
3answers
4k views
OpenMP: Huge performance differences between Visual C++ 2008 and 2010
I'm running a camera acquisition program that performs processing on acquired images, and I'm using simple OpenMP directives for this processing. So basically I wait for an image from the camera, and ...
44
votes
6answers
1k views
Why is the != operator not allowed with OpenMP?
I was trying to compiled the following code:
#pragma omp parallel shared (j)
{
#pragma omp for schedule(dynamic)
for(i = 0; i != j; i++)
{
// do something
}
}
I get this error: ...
18
votes
5answers
12k views
OpenMp C++ algorithms for min, max, median, average
I was searching Google for a page offering some simple OpenMp algorithms.
Probably there is an example to calculate min, max, median, average from a huge data array but I am not capable to find it.
...
16
votes
3answers
606 views
Can I safely use OpenMP with C++11?
The OpenMP standard only considers C++ 98 (ISO/IEC 14882:1998). This means that there is no standard supporting usage of OpenMP under C++03 or even C++11. Thus, any program that uses C++ >98 and ...
15
votes
2answers
700 views
Elegant (and typical) workaround for OpenMP reduction on complex variable in C++?
I realize that reduction is only usable for POD types in C++. What would you do to implement a reduction for a complex type accumulator?
complex<double> x(0.0,0.0), y(1.0,1.0);
#pragma omp ...
7
votes
1answer
985 views
Detect clusters of circular objects by iterative adaptive thresholding and shape analysis
I have been developing an application to count circular objects such as bacterial colonies from pictures.
What make it easy is the fact that the objects are generally well distinct from the ...
3
votes
2answers
6k views
OpenMP parallelizing matrix multiplication by a triple for loop (performance issue)
I'm writing a program for matrix multiplication with OpenMP, that, for cache convenience, implements the multiplication A x B(transpose) rows X rows instead of the classic A x B rows x columns, for ...
13
votes
20answers
2k views
Which parallel programming APIs do you use?
Trying to get a grip on how people are actually writing parallel code currently, considering the immense importance of multicore and multiprocessing hardware these days. To me, it looks like the ...
4
votes
2answers
246 views
how to make each thread use its own RNG in C++11
I'm using the new random number generators in in C++11. Although there are varying opinions, from this thread it seems that the majority believe they are not thread safe. As a consequence, I would ...
3
votes
7answers
5k views
OpenMP - terrible performance - a simple issue of overhead, or is there a program flaw? (C)
I have here what I understand to be a relatively simple OpenMP construct. The issue is that the program runs about 100-300x faster with 1 thread when compared to 2 threads. 87% of the program is ...
11
votes
2answers
5k views
Is it possible to do a reduction on an array with openmp?
Does OpenMP natively support reduction of a variable that represents an array?
This would work something like the following...
float* a = (float*) calloc(4*sizeof(float));
omp_set_num_threads(13);
...
7
votes
1answer
2k views
Why OpenMP version is slower?
I am experimenting with OpenMP. I wrote some code to check its performance. On a 4-core single Intel CPU with Kubuntu 11.04, the following program compiled with OpenMP is around 20 times slower than ...
5
votes
4answers
745 views
Splitting up a program into 4 threads is slower than a single thread
I've been writing a raytracer the past week, and have come to a point where it's doing enough that multi-threading would make sense. I have tried using OpenMP to parallelize it, but running it with ...
3
votes
1answer
185 views
Intermediate Code as a result of OpenMP pragmas
Is there a way to get my hands on the intermediate source code produced by the OpenMP pragmas?
I would like to see how each kind of pragmas is translated.
Cheers.
2
votes
2answers
267 views
How to get abstract syntax tree of a `c` program in `GCC`
How can I get the abstract syntax tree of a c program in gcc?
I'm trying to automatically insert OpenMP pragmas to the input c program.
I need to analyze nested for loops for finding dependencies so ...
2
votes
3answers
2k views
OpenMP, for loop inside section
I would like to run the following code (below). I want to spawn two independent threads, each one would run a parallel for loop. Unfortunately, I get an error. Apparently, parallel for cannot be ...
2
votes
1answer
674 views
OpenMP: run two functions in parallel, each by half of thread pool
I have a CPU consuming function do_long that I need to run on two different datasets.
do_long(data1);
do_long(data2);
do_long() {
#pragma omp for
for(...) {
// do proccessing
}
}
I ...

