You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
integer, parameter:: N =100000, CHUNKSZ =10000real:: Z(N)
integer:: C, i
do C =1, N, CHUNKSZ
!$omp task!$omp target map(Z(C:C+CHUNKSZ-1))!$omp parallel dodo i = C, C+CHUNKSZ-1end do!$omp end target!$omp end taskend do
end