Open
Description
real :: a(100)
integer :: i
!$omp task shared(a)
!$omp target map(tofrom: a)
!$omp parallel do
do i = 1, size(a)
end do
!$omp end target
!$omp end task
end
Reproducible on godbolt: https://godbolt.org/z/5dcahc5Gh
real :: a(100)
integer :: i
!$omp task shared(a)
!$omp target map(tofrom: a)
!$omp parallel do
do i = 1, size(a)
end do
!$omp end target
!$omp end task
end
Reproducible on godbolt: https://godbolt.org/z/5dcahc5Gh