OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgomp/] [testsuite/] [libgomp.c/] [critical-2.c] - Rev 735

Compare with Previous | Blame | View Log

// { dg-do run }
// Test several constructs within a parallel.  At one point in development,
// the critical directive clobbered the shared clause of the parallel.
 
#include <omp.h>
#include <stdlib.h>
 
#define N       2000
 
int main()
{
  int A[N];
  int nthreads;
  int i;
 
#pragma omp parallel shared (A, nthreads)
  {
    #pragma omp master
      nthreads = omp_get_num_threads ();
 
    #pragma omp for
      for (i = 0; i < N; i++)
        A[i] = 0;
 
    #pragma omp critical
      for (i = 0; i < N; i++)
        A[i] += 1;
  }
 
  for (i = 0; i < N; i++)
    if (A[i] != nthreads)
      abort ();
 
  return 0;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.