source: CIVL/examples/omp/dataracebench-1.3.2/micro-benchmarks/original/DRB156-missingordered-orig-gpu-yes.c

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100755
File size: 966 bytes
Line 
1/*
2!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!
3!!! Copyright (c) 2017-20, Lawrence Livermore National Security, LLC
4!!! and DataRaceBench project contributors. See the DataRaceBench/COPYRIGHT file for details.
5!!!
6!!! SPDX-License-Identifier: (BSD-3-Clause)
7!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!
8*/
9
10/*This example is referred from DRACC by Adrian Schmitz et al.
11Missing ordered directive causes data race pairs var@28:5 and var28:13.
12*/
13
14#include <stdio.h>
15#include <omp.h>
16#include <stdlib.h>
17#define N 100
18
19int main(){
20 int var[N];
21 for(int i=0; i<N; i++){
22 var[i]=0;
23 }
24
25 #pragma omp target map(tofrom:var[0:N]) device(0)
26 #pragma omp teams distribute parallel for
27 for (int i=1; i<N; i++){
28 var[i]=var[i-1]+1;
29 }
30
31 for(int i=0; i<N; i++){
32 if(var[i]!=i){
33 printf("Data Race Present\n");
34 return 0;
35 }
36 }
37 return 0;
38}
Note: See TracBrowser for help on using the repository browser.