main
test-branch
| 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.
|
|---|
| 11 | The distribute parallel for directive at line 24 will execute loop using multiple teams.
|
|---|
| 12 | The loop iterations are distributed across the teams in chunks in round robin fashion.
|
|---|
| 13 | The missing lock enclosing var@26:5 leads to data race. Data Race Pairs, var@26:5 and var@26:5.
|
|---|
| 14 | */
|
|---|
| 15 |
|
|---|
| 16 | #include <omp.h>
|
|---|
| 17 | #include <stdio.h>
|
|---|
| 18 |
|
|---|
| 19 | int main(){
|
|---|
| 20 |
|
|---|
| 21 | int var=0,i;
|
|---|
| 22 |
|
|---|
| 23 | #pragma omp target map(tofrom:var) device(0)
|
|---|
| 24 | #pragma omp teams distribute parallel for
|
|---|
| 25 | for (int i=0; i<100; i++){
|
|---|
| 26 | var++;
|
|---|
| 27 | }
|
|---|
| 28 |
|
|---|
| 29 | printf("%d\n",var);
|
|---|
| 30 | return 0;
|
|---|
| 31 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.