Tagged Questions

OpenMP is a crossplatform multi-threading API which allows fine-grained task parallelization and synchronization using special compiler directives. OpenMP offers easy access to multithreading without requiring knowledge of system-dependent details. At the same time, it is reasonably efficient compared to fine-tuned implementations and makes writing incorrect multithreaded code hard. Forums and complete information on OpenMP is at http://openmp.org/

learn more… | top users | synonyms

32
votes
2answers
620 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 ...
14
votes
3answers
6k 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 ...
12
votes
3answers
2k 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 ...
12
votes
7answers
6k views

C++ Parallelization Libraries: OpenMP vs. Thread Building Blocks

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 ...
12
votes
19answers
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 ...
11
votes
4answers
1k 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 ...
11
votes
5answers
6k 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. ...
10
votes
2answers
162 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 ...
9
votes
3answers
836 views

Hyper-threading… made my renderer 10 times slower!

Executive summary: How can one specify in his code that OpenMP should only use threads for the REAL cores, i.e. not count the hyper-threading ones? Detailed analysis: Over the years, I've coded a ...
9
votes
2answers
1k views

Python and OpenMP C Extensions

I have a C extension in which I'd like to use OpenMP. When I import my module, though, I get an import error: ImportError: /home/.../_entropysplit.so: undefined symbol: GOMP_parallel_end I've ...
8
votes
2answers
170 views

OpenMP: are local variables automatically private?

#pragma omp parallel { int x; // private to each thread ? } #pragma omp parallel for for (int i=0; i<1000; ++i) { int x; // private to each thread ? } Thank you! P.S. If local variables ...
8
votes
2answers
614 views

How a recent version of GCC (4.6) could be used together with Qt under Mac OS?

My problem is related to the one discussed here: Is there a way that OpenMP can operate on Qt spanwed threads? Upon trying to run my Qt-based program under Mac OS that has an OpenMP clause in a ...
8
votes
2answers
1k 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); ...
8
votes
1answer
316 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 ...
7
votes
1answer
146 views

OpenMP - Running parallel code inside parallel code

I have a function compute() that has parallelized matrix multiplication inside of it using OpenMP #pragma omp parallel for This function is called many times in a loop - which I would like to run ...
7
votes
1answer
384 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 ...
7
votes
1answer
294 views

Why POSIX Threads are Slower Than OpenMP

I'm running a completely parallel matrix multiplication program on a Mac Pro with a Xeon processor. I create 8 threads (as many threads as cores), and there are no shared writing issues (no writing to ...
7
votes
4answers
4k views

OpenCL: does it play well with OpenMP, can I connect other languages to it, etc

The 1.0 spec for OpenCL just came out a few days ago (Spec is here) and I've just started to read through it. I want to know if it plays well with other high performance multiprocessing APIs like ...
6
votes
1answer
411 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 ...
6
votes
1answer
293 views

OpenMP with OCAML

There's someone that know if is possible use OpenMP with an a OCaml source code? Or another application/ambient of work, compatible with OCaml, that allow me to run parallel programs that exploit ...
6
votes
2answers
216 views

C++ OpenMP program

I am trying to get a parallel effect in C++ program using the following code: #include<iostream> using namespace std; int main() { #pragma omp parallel sections { #pragma omp section ...
6
votes
3answers
267 views

Trying to know why the OpenMP code does not parallelise

I just started learning how to use OpenMP. I am trying to figure out why the following code does not run in parallel with Visual Studio 2008. It compiles and runs fine. However it uses only one core ...
6
votes
4answers
5k views

Is there anything like OpenMP on Java?

Is there anything like OpenMP on Java?
5
votes
1answer
89 views

Using OpenMP and Eigen causes infinite loop/deadlock

I'm solving a much larger problem and have run into a bug when I try to use OpenMP to parallelize some loops. I've reproduced the problem with some simpler code below that mimics my own code. The ...
5
votes
3answers
135 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 ...
5
votes
3answers
200 views

parallel quicksort in c

After a lot of searching for an implementation of parallel quicksort in c, I'm about to dive in and code it myself. (I need to sort an array of about 1 million text strings.) It seems that all the ...
5
votes
1answer
121 views

How to parallelize correctly a nested for loops

I'm working with OpenMP to parallelize a scalar nested for loop: double P[N][N]; double x=0.0,y=0.0; for (int i=0; i<N; i++) { for (int j=0; j<N; j++) { ...
5
votes
1answer
115 views

Signal handling in OpenMP parallel program

I have a program which uses POSIX timer (timer_create()). Essentially the program sets a timer and starts performing some lengthy (potentially infinite) computation. When the timer expires and a ...
5
votes
1answer
106 views

Why is OpenMP in a mex file only producing 1 thread?

I am new to OpenMP. I have the following code which compiles fine using Matlab mex configured with MSVS2010. The computer has 8 processors available (which I checked also by using matlabpool). ...
5
votes
1answer
214 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
5
votes
3answers
138 views

Program stalls during long runs

Fixed: Well this seems a bit silly. Turns out top was not displaying correctly and programs actually continue to run. Perhaps the CPU time became too large to display? Either way, the program seems ...
5
votes
1answer
253 views

Multithreading with C++ API

i am trying to parallel my program using OpenMP and sometimes i feels that i am reaching a dead end. I would like to share variables in a function member that i defined (and initialized) in the ...
5
votes
3answers
133 views

Parallel Sum for Vectors

Could someone please provide some suggestions on how I can decrease the following for loop's runtime through multithreading? Suppose I also have two vectors called 'a' and 'b'. for (int j = 0; j < ...
5
votes
2answers
203 views

OpenMP debug newbie questions

I am starting to learn OpenMP, running examples (with gcc 4.3) from https://computing.llnl.gov/tutorials/openMP/exercise.html in a cluster. All the examples work fine, but I have some questions: How ...
5
votes
3answers
379 views

Mixing Boost FOREACH macro and OpenMP parallelization

I currently have a code (in C) with an outer loop that is OpenMP-parallelized (it operates locally on a shared-memory list). I'm rewriting it in C++, and for many things I found the BOOST_FOREACH ...
5
votes
2answers
2k views

How best do I get to use OpenMP on Mac OS X 10.5 and Ubuntu 10.4?

I'm looking at an open-source library (DDS, a double-dummy bridge solver) which in its latest release (2.1.1) adds some very useful multi-tasking functionality requiring either a Windows system or ...
5
votes
3answers
2k views

How to break out of a nested parallel (OpenMP) Fortran loop idiomatically?

Here's sequential code: do i = 1, n do j = i+1, n if ("some_condition(i,j)") then result = "here's result" return end if end do end do Is there a cleaner way to ...
5
votes
6answers
856 views

Why is my computer not showing a speedup when I use parallel code?

So I realize this question sounds stupid (and yes I am using a dual core), but I have tried two different libraries (Grand Central Dispatch and OpenMP), and when using clock() to time the code with ...
5
votes
1answer
560 views

OpenMP with OpenCV on OS X

I'm having a problem getting OpenMP and OpenCV to play nicely with a new project in Xcode. The project in its current state does nothing but grab frames from the default camera and put them into a ...
5
votes
2answers
857 views

Starting a thread for each inner loop in OpenMP

I'm fairly new to OpenMP and I'm trying to start an individual thread to process each item in a 2D array. So essentially, this: for (i = 0; i < dimension; i++) { for (int j = 0; j < ...
5
votes
2answers
2k views

OpenMP: omp pararallel vs. omp parallel for?

I am a newbie to OpenMP (I began using it today) What is the difference between these two? [A] #pragma omp parallel { #pragma omp for for(1...100) { } } [B] #pragma omp parallel for ...
5
votes
6answers
437 views

Efficient way to save data to disk while running a computationally intensive task

I'm working on a piece of scientific software that is very cpu-intensive (its proc bound), but it needs to write data to disk fairly often (i/o bound). I'm adding parallelization to this (OpenMP) and ...
5
votes
5answers
2k views

OpenMP parallelization on a recursive function

I'm trying to use parallelization to improve the refresh rate for drawing a 3D scene with heirarchically ordered objects. The scene drawing algorithm first recursively traverses the tree of objects, ...
4
votes
3answers
152 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 ...
4
votes
2answers
113 views

Accessing a thread's private memory in OpenMP

According to the OpenMP Memory Model, the following is incorrect: int *p0 = NULL, *p1 = NULL; #pragma omp parallel shared(p0,p1) { int x; // THREAD 0 // THREAD 1 p0 = &x; ...
4
votes
1answer
138 views

how to implement a “soft barrier” in multithreaded c++

I have some multithreaded c++ code with the following structure: do_thread_specific_work(); update_shared_variables(); //checkpoint A do_thread_specific_work_not_modifying_shared_variables(); ...
4
votes
2answers
102 views

Using the OpenMP threadprivate directive on static instances of C++ STL types

Consider the following snippet: #include <map> class A { static std::map<int,int> theMap; #pragma omp threadprivate(theMap) }; std::map<int,int> A::theMap; Compilation with ...
4
votes
1answer
370 views

C OpenMP parallel bubble sort

I have an implementation of parallel bubble sort algorithm(Odd-Even transposition sort) in C, using OpenMP. However, after I tested it it's slower than the serial version(by about 10%) although I have ...
4
votes
4answers
153 views

Parallel speedup with OpenMP

I have two scenarios of measuring metrics like computation time and parallel speedup (sequential_time/parallel_time). Scenario 1: Sequential time measurement: startTime=omp_get_wtime(); for ...
4
votes
1answer
146 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 ...

1 2 3 4 5 11