Skip to content

Commit 2aab36e

Browse files
committed
Clean up to address review comments
1 parent 580f5e4 commit 2aab36e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/core_atmosphere/dynamics/mpas_atm_time_integration.F

+4-5
Original file line numberDiff line numberDiff line change
@@ -6386,7 +6386,6 @@ subroutine atm_rk_dynamics_substep_finish( state, diag, nVertLevels, dynamics_su
63866386
!$acc end parallel
63876387
end if
63886388

6389-
63906389
if (dynamics_substep == 1) then
63916390
!$acc parallel
63926391
!$acc loop gang worker
@@ -6441,10 +6440,10 @@ subroutine atm_rk_dynamics_substep_finish( state, diag, nVertLevels, dynamics_su
64416440
end do
64426441
!$acc loop gang worker
64436442
do iCell = cellStart,cellEnd
6444-
!$acc loop vector
6445-
do k = 1,nVertLevels
6446-
rho_zz_1(k,iCell) = rho_zz_old_split(k,iCell)
6447-
end do
6443+
!$acc loop vector
6444+
do k = 1,nVertLevels
6445+
rho_zz_1(k,iCell) = rho_zz_old_split(k,iCell)
6446+
end do
64486447
end do
64496448
!$acc end parallel
64506449
end if

0 commit comments

Comments
 (0)