Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes to OpenMP examples #98

Merged
merged 4 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Pragma_Examples/OpenMP/C/3_vecadd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,16 @@ Version with simple mapping clauses, set ```export HSA_XNACK=0``` to observe beh
Build and run like above.
Move data only were necessary a structured data region is used here, set ```export HSA_XNACK=0``` to observe behaviour similar to discrete GPUs

#### 4) with unified shared memory and asynchronous execution
```
4_vecadd_async_usm
```
Build and run like above.
Unified memory version with asynchronous OpenMP kernel calls. Don't forget to set ```export HSA_XNACK=1```.

#### 5) with map clauses and asynchronous execution
```
5_vecadd_async
```
Build and run like above.
Version with a `target enter data` map clause directive and asynchronous OpenMP kernel calls. Set ```export HSA_XNACK=0``` to observe behaviour similar to discrete GPUs.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ int main(int argc, char *argv[]){
double ce1=0.0;
double ce2=0.0;

#pragma target teams distribute parallel do reduction(+:ce1,ce2)
#pragma omp target teams distribute parallel for reduction(+:ce1,ce2)
for (int j = 0; j< 1000; j++){
ce1 += 1.0;
ce2 += 1.0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma requires unified_shared_memory
#pragma omp requires unified_shared_memory
#pragma omp declare target
void compute(double *x){
*x = 1.0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
void compute(double *x){
*x = 1.0;
}
#pragma omp end declare target
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

int main(int argc, char *argv[]){
double ce[2]={0.0, 0.0};
#pragma target teams distribute parallel do simd reduction(+:ce1[0:2])
#pragma omp target teams distribute parallel for simd reduction(+:ce[0:2])
for (int j = 0; j< 1000; j++){
ce[0] += 1.0;
ce[1] += 1.0;
Expand Down
23 changes: 0 additions & 23 deletions Pragma_Examples/OpenMP/Fortran/CMakeLists.txt

This file was deleted.

37 changes: 0 additions & 37 deletions Pragma_Examples/OpenMP/Fortran/Makefile

This file was deleted.