I've been assigned to implement the idea of a reduction variable without using the reduction clause. I set up this basic code to test it.
int i = 0;
int n = 100000000;
double sum = 0.0;
double val = 0.0;
for (int i = 0; i < n; ++i)
{
val += 1;
}
sum += val;
so at the end sum == n.
Each thread should set val as a private variable, and then the addition to sum should be a critical section where the threads converge, e.g.
int i = 0;
int n = 100000000;
double sum = 0.0;
double val = 0.0;
#pragma omp parallel for private(i, val) shared(n) num_threads(nthreads)
for (int i = 0; i < n; ++i)
{
val += 1;
}
#pragma omp critical
{
sum += val;
}
I can't figure out how to maintain the private instance of val for the critical section. I have tried surrounding the whole thing in a larger pragma, e.g.
int i = 0;
int n = 100000000;
double sum = 0.0;
double val = 0.0;
#pragma omp parallel private(val) shared(sum)
{
#pragma omp parallel for private(i) shared(n) num_threads(nthreads)
for (int i = 0; i < n; ++i)
{
val += 1;
}
#pragma omp critical
{
sum += val;
}
}
but I don't get the correct answer. How should I set up the pragmas and clauses to do this?
vals for the different threads? I doubt it and that would mean thatvalis accessed and written to by different threads at the same time – stefan Oct 5 '12 at 21:58nthreadsand add toarray[omp_get_thread_num()], afterwards, calculating the total of the values in the array. It's much more obvious ;-) – stefan Oct 5 '12 at 21:59