Skip to content
Open
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
4 changes: 3 additions & 1 deletion src/core_atmosphere/dynamics/mpas_atm_time_integration.F
Original file line number Diff line number Diff line change
Expand Up @@ -3961,14 +3961,16 @@ subroutine atm_advance_acoustic_step_work(nCells, nEdges, nCellsSolve, cellStart
end do
!$acc end parallel
else
call mpas_timer_start('advance_acoustic_step_3964')
!$acc parallel default(present)
!$acc loop gang worker collapse(2)
!$acc loop gang worker vector collapse(2)
do iCell=cellStart,cellEnd
do k=1,nVertLevels
rtheta_pp_old(k,iCell) = rtheta_pp(k,iCell)
end do
end do
!$acc end parallel
call mpas_timer_stop('advance_acoustic_step_3964')
end if

!$OMP BARRIER
Expand Down