File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -316,14 +316,14 @@ contains
316
316
Rc_min_loc = minval (Rc_sf)
317
317
end if
318
318
#else
319
- #: call GPU_PARALLEL()
320
- icfl_max_loc = maxval (icfl_sf)
321
- #:endcall GPU_PARALLEL
319
+ !$acc kernels
320
+ icfl_max_loc = maxval (icfl_sf)
321
+ !$acc end kernels
322
322
if (viscous) then
323
- #: call GPU_PARALLEL()
324
- vcfl_max_loc = maxval (vcfl_sf)
325
- Rc_min_loc = minval (Rc_sf)
326
- #:endcall GPU_PARALLEL
323
+ !$acc kernels
324
+ vcfl_max_loc = maxval (vcfl_sf)
325
+ Rc_min_loc = minval (Rc_sf)
326
+ !$acc end kernels
327
327
end if
328
328
#endif
329
329
Original file line number Diff line number Diff line change @@ -993,9 +993,9 @@ contains
993
993
end do
994
994
end do
995
995
996
- #: call GPU_PARALLEL()
997
- dt_local = minval (max_dt)
998
- #:endcall GPU_PARALLEL
996
+ !$acc kernels
997
+ dt_local = minval (max_dt)
998
+ !$acc end kernels
999
999
1000
1000
if (num_procs == 1 ) then
1001
1001
dt = dt_local
You can’t perform that action at this time.
0 commit comments