Skip to content

Commit

Permalink
Update 06-OpenMP-interoperability.md
Browse files Browse the repository at this point in the history
  • Loading branch information
csccva authored Jun 18, 2024
1 parent 6626e9e commit db9035a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpu-openmp/docs/06-OpenMP-interoperability.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ double *x, *y;
#pragma omp target data map(to:x[:n]), map(from:y[:n]))
{
#pragma omp target data use_device_ptr(x, y) {
cublasDaxpy(hipblashandler, a, x, 1, y, 1);
hipblasDaxpy(hipblashandler, a, x, 1, y, 1);
}
}
```
Expand Down

0 comments on commit db9035a

Please sign in to comment.