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?
totaland&iRun? Why pass a pointer to the index? – wallyk Nov 11 '11 at 15:48total[*iRun].iRunis not modified. – janoliver Nov 11 '11 at 15:49total[x]? Or read from any othertotal[]element? – wallyk Nov 11 '11 at 15:51iRunshould be unique in the loop, so one thread is attached to on iRun. Within MC_run onlytotal[*iRun]is read or written to. – janoliver Nov 11 '11 at 15:56