Skip to content

Commit e8c9c64

Browse files
committed
Fixing bug associated with rho_zz_2 not being copied out at the end of dynamics
1 parent 4845ce2 commit e8c9c64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core_atmosphere/dynamics/mpas_atm_time_integration.F

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@ subroutine mpas_atm_post_dynamics_d2h(domain)
12811281
call mpas_pool_get_array(state, 'rho_zz', rho_zz_1, 1)
12821282
!$acc exit data copyout(rho_zz_1)
12831283
call mpas_pool_get_array(state, 'rho_zz', rho_zz_2, 2)
1284-
!$acc exit data delete(rho_zz_2)
1284+
!$acc exit data copyout(rho_zz_2)
12851285
call mpas_pool_get_array(state, 'scalars', scalars_1, 1)
12861286
!$acc exit data copyout(scalars_1)
12871287
call mpas_pool_get_array(state, 'scalars', scalars_2, 2)

0 commit comments

Comments
 (0)