summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/test/threadprivate/omp_threadprivate_for.c
blob: abfe52b00d0ef6378e871b77cc0abcb4ec01f9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// RUN: %libomp-compile-and-run
#include "omp_testsuite.h"
#include <stdlib.h>
#include <stdio.h>

static int i;
#pragma omp threadprivate(i)

int test_omp_threadprivate_for()
{
  int known_sum;
  int sum;

  known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2;
  sum = 0;

  #pragma omp parallel
  {
    int sum0 = 0;
    #pragma omp for
    for (i = 1; i <= LOOPCOUNT; i++) {
      sum0 = sum0 + i;
    }
    #pragma omp critical
    {
      sum = sum + sum0;
    }
  } /* end of parallel */  

  if (known_sum != sum ) {
    fprintf(stderr, " known_sum = %d, sum = %d\n", known_sum, sum);
  }
  return (known_sum == sum);
} /* end of check_threadprivate*/

int main()
{
  int i;
  int num_failed=0;

  for(i = 0; i < REPETITIONS; i++) {
    if(!test_omp_threadprivate_for()) {
      num_failed++;
    }
  }
  return num_failed;
}
OpenPOWER on IntegriCloud