source: CIVL/examples/omp/dataracebench-1.3.2/micro-benchmarks/DRB152-missinglock2-orig-gpu-no.c@ bb03188

main test-branch
Last change on this file since bb03188 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: 901 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/*
11Concurrent access of var@28:5 in an intra region. Lock ensures that there is no data race.
12*/
13
14#include <stdio.h>
15#include <omp.h>
16#define N 100
17
18int main(){
19 omp_lock_t lck;
20 int var=0;
21 omp_init_lock(&lck);
22
23 #pragma omp target map(tofrom:var) device(0)
24 #pragma omp teams num_teams(1)
25 #pragma omp distribute parallel for
26 for (int i=0; i<N; i++){
27 omp_set_lock(&lck);
28 var++;
29 omp_unset_lock(&lck);
30 }
31
32 omp_destroy_lock(&lck);
33 printf("%d\n",var);
34 return 0;
35}
Note: See TracBrowser for help on using the repository browser.