source: CIVL/examples/omp/dataracebench-1.3.2/micro-benchmarks-fortran/DRB120-barrier-orig-no.f95

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: 904 bytes
Line 
1!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!
2!!! Copyright (c) 2017-20, Lawrence Livermore National Security, LLC
3!!! and DataRaceBench project contributors. See the DataRaceBench/COPYRIGHT file for details.
4!!!
5!!! SPDX-License-Identifier: (BSD-3-Clause)
6!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!
7
8!The barrier construct specifies an explicit barrier at the point at which the construct appears.
9!Barrier construct at line:27 ensures that there is no data race.
10
11program DRB120_barrier_orig_no
12 use omp_lib
13 implicit none
14
15 integer :: var
16
17 !$omp parallel shared(var)
18 !$omp single
19 var = var + 1;
20 !$omp end single
21 !$omp barrier
22
23 !$omp single
24 var = var + 1;
25 !$omp end single
26 !$omp end parallel
27
28 print 100, var
29 100 format ('var =',i3)
30end program
Note: See TracBrowser for help on using the repository browser.