In my Monte Carlo simulation I run the whole thing multiple times to be able to average the results and reach higher precision. Since the realizations share nearly no variables or anything, it should be very simple to parallelize them. So I included omp.h and added some #pragmas:

# pragma omp parallel for if(args.parallel_given) private(r)
for(iRun = 1; iRun <= args.nruns_arg; iRun++)
{
    MC_run(total, &iRun);
}

total is some array of length args.nruns_arg, where the results are stored. So basically, it should work out of the box. Unfortunately, the simulation crashes with a Segfault in a GSL random number generator I use. This is the gdb output:

[New Thread 0x7ffff6b3c700 (LWP 29995)]
[New Thread 0x7ffff633b700 (LWP 29996)]
[New Thread 0x7ffff5b3a700 (LWP 29997)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7ffff5b3a700 (LWP 29997)]
0x00007ffff7acfce0 in gsl_ran_exponential () from /usr/lib/libgsl.so.0

The gsl workspace r is allocated outside of the loop (some global variable) and shared by the threads. On the GSL website it says, GSL is thread-safe, and I thought that meant I don't have to care about anything. I tried using private(r) and shared(r) but nothing helped. What happens there and what can I do?

link|improve this question

69% accept rate
What does the algorithm do with its parameters, total and &iRun? Why pass a pointer to the index? – wallyk Nov 11 '11 at 15:48
It writes the results to total[*iRun]. iRun is not modified. – janoliver Nov 11 '11 at 15:49
Does any other iteration write to the same total[x]? Or read from any other total[] element? – wallyk Nov 11 '11 at 15:51
As I understand it, iRun should be unique in the loop, so one thread is attached to on iRun. Within MC_run only total[*iRun] is read or written to. – janoliver Nov 11 '11 at 15:56
2  
I figured it out, I accidentally freed the gsl workspace before all threads finished. Thanks anyways! – janoliver Nov 11 '11 at 16:44
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.