source: CIVL/examples/omp/dataracebench-1.3.2/micro-benchmarks/original/DRB171-threadprivate3-orig-no.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: 974 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 kernel imitates the nature of a program from the NAS Parallel Benchmarks 3.0 MG suit.
11 * There is no data race pairs, example of a threadprivate var and update by TID==0 only.
12 */
13
14#include <omp.h>
15#include <stdio.h>
16
17static double x[20];
18#pragma omp threadprivate(x)
19
20int main(){
21 int i;
22 double j,k;
23
24 #pragma omp parallel for default(shared)
25 for (i = 0; i < 20; i++){
26 x[i] = -1.0;
27 if(omp_get_thread_num()==0){
28 j = x[0];
29 }
30 if(omp_get_thread_num()==0){
31 k = i+0.05;
32 }
33 }
34
35 printf ("%f %f\n", j, k);
36
37 return 0;
38}
39
Note: See TracBrowser for help on using the repository browser.