From b426fd03cb3a78e5d8e800c545e6b205e1b14d3c Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Mon, 24 Jul 2023 15:05:48 +0000 Subject: [PATCH 01/20] Changes to logging and initialization of the CLM Lake Model. 1. Use ice thickness hice(i) to find the level in the lake where ice is zero. 2. Do not allow lake temperature to be below freezing point if there is no ice. 3. If there is no snow or ice, do not allow surface lake temperature to be below freezing point. These changes fixed the problem with large errors in the energy budget at the beginning of the cold-start run with lakes. 4. Added flag to turn on debug print statements in the CLM lake model. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index e7dc085032..b302278246 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit e7dc085032e072cc075d060ef654a0a6fe663956 +Subproject commit b3022782466e72afe52341e7b8c18aff8baaeb35 From 824a597d7ab1b9d874ff27576612f0c9812b4c4c Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 27 Jul 2023 21:09:34 +0000 Subject: [PATCH 02/20] changes missing from prior FV3/ccpp/physics commits --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 79de9da0be..2a4e8a0b7b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 79de9da0bea648c15bd697e4dadd10ef4641fcd3 +Subproject commit 2a4e8a0b7b206e2970f784f1b5bc191e635078b4 From 7b4b0e2d465a28f9198380be93c287dbf06e0dab Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 27 Jul 2023 21:10:02 +0000 Subject: [PATCH 03/20] explicitly turn of frac_ice for flake --- tests/default_vars.sh | 2 +- tests/parm/control_flake.nml.IN | 2 +- tests/tests/control_flake | 1 + tests/tests/control_flake_debug | 1 + tests/tests/rap_flake_debug | 1 + 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 2b2b7beb1b..d0ed308e2a 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -506,7 +506,7 @@ export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake poi export IOPT_LAKE=2 # 1=flake, 2=clm lake export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it -export FRAC_ICE=.false. +export FRAC_ICE=.true. # should be false for flake, true for clm_lake export CPL=.false. export CPLCHM=.false. diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index b0e1b47288..947913646a 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -111,7 +111,7 @@ deflate_level=1 lakefrac_threshold = @[LAKEFRAC_THRESHOLD] ! 0.15 lakedepth_threshold = @[LAKEDEPTH_THRESHOLD] ! 0.5 clm_lake_debug = .false. - + frac_ice = @[FRAC_ICE] ! false for flake, true for clm lake fhzero = 6 h2o_phys = .true. ldiag3d = .false. diff --git a/tests/tests/control_flake b/tests/tests/control_flake index 7a732aa695..20428c49a9 100644 --- a/tests/tests/control_flake +++ b/tests/tests/control_flake @@ -33,6 +33,7 @@ export RESTART_INTERVAL=6 export LKM=1 export IOPT_LAKE=1 +export FRAC_ICE=.false. export DO_SPPT=.true. export DO_SHUM=.true. diff --git a/tests/tests/control_flake_debug b/tests/tests/control_flake_debug index b5403e8c85..f9d0f551ca 100644 --- a/tests/tests/control_flake_debug +++ b/tests/tests/control_flake_debug @@ -30,6 +30,7 @@ export OUTPUT_FH="0 1" export LKM=1 export IOPT_LAKE=1 +export FRAC_ICE=.false. export DO_SPPT=.true. export DO_SHUM=.true. diff --git a/tests/tests/rap_flake_debug b/tests/tests/rap_flake_debug index 5f6d19f77a..208e613fb1 100644 --- a/tests/tests/rap_flake_debug +++ b/tests/tests/rap_flake_debug @@ -33,6 +33,7 @@ export CCPP_SUITE=FV3_RAP_flake export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_rap +export FRAC_ICE=.false. export IMP_PHYSICS=8 export DNATS=0 From 19207c5ae626e820b97b4ddafde285e1fe507b10 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 28 Jul 2023 03:13:01 +0000 Subject: [PATCH 04/20] t_grnd(i) should be t_grnd(c) --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 2a4e8a0b7b..391341a3bc 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2a4e8a0b7b206e2970f784f1b5bc191e635078b4 +Subproject commit 391341a3bc2f9c15330ea0e69c6891fc76c503a1 From c1e3f714aa591b33a502ba55716e3d0d08a2e18b Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 28 Jul 2023 15:19:51 +0000 Subject: [PATCH 05/20] fix another typo in clm_lake.f90 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 391341a3bc..5a59950e5d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 391341a3bc2f9c15330ea0e69c6891fc76c503a1 +Subproject commit 5a59950e5d5302d63fa546810cd55b9d12c7bb22 From e2a4e94fea502172142a15ddcdaf2a3fd3492c0d Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 28 Jul 2023 16:15:37 +0000 Subject: [PATCH 06/20] hera tests passed --- tests/logs/RegressionTests_hera.log | 2112 +++++++++++++-------------- 1 file changed, 1056 insertions(+), 1056 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index b0e9f96aff..b2e2c9b8d4 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Thu Jul 27 00:34:25 UTC 2023 +Fri Jul 28 08:55:31 UTC 2023 Start Regression test -Testing UFSWM Hash: 6f4b4c9db3457ae989732623eb8d2b7c3dc9040c +Testing UFSWM Hash: 19207c5ae626e820b97b4ddafde285e1fe507b10 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 67f544ec9b3d1025e932cff0f79c587c8de8acca ../FV3 (remotes/origin/upp_june) + 391341a3bc2f9c15330ea0e69c6891fc76c503a1 ../FV3 (heads/tanya-fix-20230724) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 550 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 221 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 545 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 522 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_debug_dyn32_intel elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 179 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 183 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 274 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 564 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 610 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 118 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 189 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 69 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 615 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 212 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 617 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 647 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 614 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 236 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 617 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 664 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 155 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 685 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 228 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 134 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 242 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 252 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 936 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 108 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_p8_mixedmode_intel +Compile atm_dyn32_debug_gnu elapsed time 181 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 178 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 174 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 273 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 528 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 188 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 554 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 522 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 543 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 550 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 551 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 528 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 120 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 200 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 586 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 581 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 586 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 586 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 213 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 611 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 138 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 210 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 253 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 908 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 694 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.741120 - 0: The maximum resident set size (KB) = 3130276 + 0: The total amount of wall time = 310.328893 + 0: The maximum resident set size (KB) = 3133748 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_gfsv17_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 241.103631 - 0: The maximum resident set size (KB) = 1677344 + 0: The total amount of wall time = 223.470650 + 0: The maximum resident set size (KB) = 1657972 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 371.383624 - 0: The maximum resident set size (KB) = 3173180 + 0: The total amount of wall time = 346.465947 + 0: The maximum resident set size (KB) = 3157068 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.656159 - 0: The maximum resident set size (KB) = 3043988 + 0: The total amount of wall time = 197.378093 + 0: The maximum resident set size (KB) = 3040236 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 376.520173 - 0: The maximum resident set size (KB) = 3186584 + 0: The total amount of wall time = 342.992526 + 0: The maximum resident set size (KB) = 3168580 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.588167 - 0: The maximum resident set size (KB) = 3052292 + 0: The total amount of wall time = 203.976616 + 0: The maximum resident set size (KB) = 3057360 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.151549 - 0: The maximum resident set size (KB) = 3513628 + 0: The total amount of wall time = 354.481996 + 0: The maximum resident set size (KB) = 3513804 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.948493 - 0: The maximum resident set size (KB) = 3159220 + 0: The total amount of wall time = 350.199837 + 0: The maximum resident set size (KB) = 3150656 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_mpi_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.552081 - 0: The maximum resident set size (KB) = 3020660 + 0: The total amount of wall time = 297.830486 + 0: The maximum resident set size (KB) = 2999472 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_ciceC_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.456923 - 0: The maximum resident set size (KB) = 3168540 + 0: The total amount of wall time = 360.970061 + 0: The maximum resident set size (KB) = 3156768 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 634.988357 - 0: The maximum resident set size (KB) = 3253620 + 0: The total amount of wall time = 606.335148 + 0: The maximum resident set size (KB) = 3252168 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_restart_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 410.830757 - 0: The maximum resident set size (KB) = 3145552 + 0: The total amount of wall time = 395.377972 + 0: The maximum resident set size (KB) = 3139664 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 753.852801 - 0: The maximum resident set size (KB) = 4037244 + 0: The total amount of wall time = 721.052765 + 0: The maximum resident set size (KB) = 4030148 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_restart_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.810942 - 0: The maximum resident set size (KB) = 3953564 + 0: The total amount of wall time = 451.003308 + 0: The maximum resident set size (KB) = 3955204 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 290.796591 - 0: The maximum resident set size (KB) = 1717472 + 0: The total amount of wall time = 266.383610 + 0: The maximum resident set size (KB) = 1726300 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 278.248483 - 0: The maximum resident set size (KB) = 1758500 + 0: The total amount of wall time = 258.226346 + 0: The maximum resident set size (KB) = 1773536 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 527.228112 - 0: The maximum resident set size (KB) = 3233960 + 0: The total amount of wall time = 525.648486 + 0: The maximum resident set size (KB) = 3236500 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_debug_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.972889 - 0: The maximum resident set size (KB) = 1729404 + 0: The total amount of wall time = 371.145510 + 0: The maximum resident set size (KB) = 1731208 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 290.427478 - 0: The maximum resident set size (KB) = 1766896 + 0: The total amount of wall time = 271.741237 + 0: The maximum resident set size (KB) = 1764880 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 585.047108 - 0: The maximum resident set size (KB) = 2804424 + 0: The total amount of wall time = 590.449969 + 0: The maximum resident set size (KB) = 2808104 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.038518 - 0: The maximum resident set size (KB) = 3160668 + 0: The total amount of wall time = 323.793627 + 0: The maximum resident set size (KB) = 3138788 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1193.892877 - 0: The maximum resident set size (KB) = 1741836 + 0: The total amount of wall time = 1187.519946 + 0: The maximum resident set size (KB) = 1750756 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_restart_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 602.235070 - 0: The maximum resident set size (KB) = 1026876 + 0: The total amount of wall time = 562.627922 + 0: The maximum resident set size (KB) = 1026752 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1092.451579 - 0: The maximum resident set size (KB) = 1650856 + 0: The total amount of wall time = 1088.561663 + 0: The maximum resident set size (KB) = 1655032 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_debug_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1389.223051 - 0: The maximum resident set size (KB) = 1697068 + 0: The total amount of wall time = 1399.969608 + 0: The maximum resident set size (KB) = 1691232 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_flake_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.872841 - 0: The maximum resident set size (KB) = 679516 + 0: The total amount of wall time = 186.871745 + 0: The maximum resident set size (KB) = 684344 Test 026 control_flake_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_CubedSphereGrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,28 +1719,28 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 134.123124 - 0: The maximum resident set size (KB) = 625132 + 0: The total amount of wall time = 130.659638 + 0: The maximum resident set size (KB) = 627520 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 131.069247 - 0: The maximum resident set size (KB) = 626056 + 0: The total amount of wall time = 129.337945 + 0: The maximum resident set size (KB) = 628768 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_latlon_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.903085 - 0: The maximum resident set size (KB) = 624296 + 0: The total amount of wall time = 133.142086 + 0: The maximum resident set size (KB) = 625664 Test 029 control_latlon_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1769,14 +1769,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.974427 - 0: The maximum resident set size (KB) = 629440 + 0: The total amount of wall time = 137.006081 + 0: The maximum resident set size (KB) = 623772 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 368.589451 -0: The maximum resident set size (KB) = 806656 +0: The total amount of wall time = 368.415476 +0: The maximum resident set size (KB) = 805996 Test 031 control_c48_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_c192_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.203187 - 0: The maximum resident set size (KB) = 767304 + 0: The total amount of wall time = 521.815631 + 0: The maximum resident set size (KB) = 764488 Test 032 control_c192_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_c384_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1851,14 +1851,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.290108 - 0: The maximum resident set size (KB) = 1267508 + 0: The total amount of wall time = 525.505412 + 0: The maximum resident set size (KB) = 1256304 Test 033 control_c384_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_c384gdas_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.541190 - 0: The maximum resident set size (KB) = 1379588 + 0: The total amount of wall time = 457.238524 + 0: The maximum resident set size (KB) = 1381540 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_stochy_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1919,28 +1919,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.932968 - 0: The maximum resident set size (KB) = 634832 + 0: The total amount of wall time = 87.440504 + 0: The maximum resident set size (KB) = 629480 Test 035 control_stochy_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_stochy_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.263670 - 0: The maximum resident set size (KB) = 487124 + 0: The total amount of wall time = 47.447814 + 0: The maximum resident set size (KB) = 483544 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1951,14 +1951,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.419330 - 0: The maximum resident set size (KB) = 631544 + 0: The total amount of wall time = 81.284319 + 0: The maximum resident set size (KB) = 632576 Test 037 control_lndp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_iovr4_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.671884 - 0: The maximum resident set size (KB) = 624628 + 0: The total amount of wall time = 134.188707 + 0: The maximum resident set size (KB) = 622792 Test 038 control_iovr4_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_iovr5_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1995,14 +1995,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.895818 - 0: The maximum resident set size (KB) = 627208 + 0: The total amount of wall time = 134.869640 + 0: The maximum resident set size (KB) = 624736 Test 039 control_iovr5_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.830639 - 0: The maximum resident set size (KB) = 1599340 + 0: The total amount of wall time = 169.203913 + 0: The maximum resident set size (KB) = 1598508 Test 040 control_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2095,14 +2095,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.926247 - 0: The maximum resident set size (KB) = 875232 + 0: The total amount of wall time = 89.156409 + 0: The maximum resident set size (KB) = 873824 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2149,14 +2149,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.558346 - 0: The maximum resident set size (KB) = 1600716 + 0: The total amount of wall time = 166.699413 + 0: The maximum resident set size (KB) = 1602208 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 95.895422 - 0: The maximum resident set size (KB) = 875260 + 0: The total amount of wall time = 90.654024 + 0: The maximum resident set size (KB) = 866268 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2245,14 +2245,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.446341 - 0: The maximum resident set size (KB) = 1586540 + 0: The total amount of wall time = 174.663170 + 0: The maximum resident set size (KB) = 1584944 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2295,14 +2295,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.059653 - 0: The maximum resident set size (KB) = 1691712 + 0: The total amount of wall time = 155.894540 + 0: The maximum resident set size (KB) = 1685556 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 324.193369 - 0: The maximum resident set size (KB) = 1596684 + 0: The total amount of wall time = 312.748129 + 0: The maximum resident set size (KB) = 1595492 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_rrtmgp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2375,14 +2375,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.139677 - 0: The maximum resident set size (KB) = 1658712 + 0: The total amount of wall time = 223.499443 + 0: The maximum resident set size (KB) = 1671912 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_mynn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2429,14 +2429,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.587188 - 0: The maximum resident set size (KB) = 1605676 + 0: The total amount of wall time = 170.565773 + 0: The maximum resident set size (KB) = 1608512 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/merra2_thompson_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2483,14 +2483,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.230695 - 0: The maximum resident set size (KB) = 1608896 + 0: The total amount of wall time = 191.482712 + 0: The maximum resident set size (KB) = 1606080 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2501,28 +2501,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.621828 - 0: The maximum resident set size (KB) = 870996 + 0: The total amount of wall time = 294.992532 + 0: The maximum resident set size (KB) = 874424 Test 050 regional_control_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.210147 - 0: The maximum resident set size (KB) = 865540 + 0: The total amount of wall time = 149.805025 + 0: The maximum resident set size (KB) = 862832 Test 051 regional_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2533,28 +2533,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.928597 - 0: The maximum resident set size (KB) = 867812 + 0: The total amount of wall time = 296.537705 + 0: The maximum resident set size (KB) = 869508 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.328174 - 0: The maximum resident set size (KB) = 863200 + 0: The total amount of wall time = 149.808745 + 0: The maximum resident set size (KB) = 865604 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.002233 - 0: The maximum resident set size (KB) = 864028 + 0: The total amount of wall time = 307.926783 + 0: The maximum resident set size (KB) = 858232 Test 054 regional_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2583,14 +2583,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 179.849472 - 0: The maximum resident set size (KB) = 850824 + 0: The total amount of wall time = 181.716705 + 0: The maximum resident set size (KB) = 824172 Test 055 regional_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_noquilt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2598,28 +2598,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.643827 - 0: The maximum resident set size (KB) = 856188 + 0: The total amount of wall time = 291.586012 + 0: The maximum resident set size (KB) = 855196 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 286.909018 - 0: The maximum resident set size (KB) = 861712 + 0: The total amount of wall time = 286.327758 + 0: The maximum resident set size (KB) = 867572 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_2dwrtdecomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2630,14 +2630,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.629846 - 0: The maximum resident set size (KB) = 871928 + 0: The total amount of wall time = 294.118100 + 0: The maximum resident set size (KB) = 867840 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_wofs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2648,14 +2648,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.934898 - 0: The maximum resident set size (KB) = 631360 + 0: The total amount of wall time = 371.188457 + 0: The maximum resident set size (KB) = 627564 Test 059 regional_wofs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2702,14 +2702,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.943602 - 0: The maximum resident set size (KB) = 1058392 + 0: The total amount of wall time = 447.429176 + 0: The maximum resident set size (KB) = 1054372 Test 060 rap_control_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2720,14 +2720,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.352942 - 0: The maximum resident set size (KB) = 1185756 + 0: The total amount of wall time = 230.795889 + 0: The maximum resident set size (KB) = 1182728 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.529052 - 0: The maximum resident set size (KB) = 1000032 + 0: The total amount of wall time = 464.234940 + 0: The maximum resident set size (KB) = 993312 Test 062 rap_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.813848 - 0: The maximum resident set size (KB) = 1142308 + 0: The total amount of wall time = 421.181328 + 0: The maximum resident set size (KB) = 1135480 Test 063 rap_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2874,14 +2874,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.946167 - 0: The maximum resident set size (KB) = 966048 + 0: The total amount of wall time = 226.059624 + 0: The maximum resident set size (KB) = 962244 Test 064 rap_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2928,14 +2928,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.469247 - 0: The maximum resident set size (KB) = 1013784 + 0: The total amount of wall time = 446.132464 + 0: The maximum resident set size (KB) = 1060000 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2982,14 +2982,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.406804 - 0: The maximum resident set size (KB) = 996044 + 0: The total amount of wall time = 468.619946 + 0: The maximum resident set size (KB) = 995200 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3028,14 +3028,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.949115 - 0: The maximum resident set size (KB) = 991944 + 0: The total amount of wall time = 332.656234 + 0: The maximum resident set size (KB) = 988632 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3082,14 +3082,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.670944 - 0: The maximum resident set size (KB) = 1057336 + 0: The total amount of wall time = 431.085022 + 0: The maximum resident set size (KB) = 1047004 Test 068 hrrr_control_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3136,14 +3136,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.403944 - 0: The maximum resident set size (KB) = 1047236 + 0: The total amount of wall time = 426.942375 + 0: The maximum resident set size (KB) = 1059772 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3190,14 +3190,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.021239 - 0: The maximum resident set size (KB) = 998100 + 0: The total amount of wall time = 449.574036 + 0: The maximum resident set size (KB) = 997812 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3244,42 +3244,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.396356 - 0: The maximum resident set size (KB) = 1069072 + 0: The total amount of wall time = 395.149011 + 0: The maximum resident set size (KB) = 1069900 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.247457 - 0: The maximum resident set size (KB) = 974556 + 0: The total amount of wall time = 319.876723 + 0: The maximum resident set size (KB) = 979432 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.532226 - 0: The maximum resident set size (KB) = 998124 + 0: The total amount of wall time = 321.541407 + 0: The maximum resident set size (KB) = 994572 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_v1beta_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.330400 - 0: The maximum resident set size (KB) = 1054360 + 0: The total amount of wall time = 440.730931 + 0: The maximum resident set size (KB) = 1051852 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_v1nssl_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3348,14 +3348,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.750765 - 0: The maximum resident set size (KB) = 687764 + 0: The total amount of wall time = 521.103161 + 0: The maximum resident set size (KB) = 691124 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 516.940671 - 0: The maximum resident set size (KB) = 762608 + 0: The total amount of wall time = 509.060814 + 0: The maximum resident set size (KB) = 755228 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3393,14 +3393,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 150.848178 - 0: The maximum resident set size (KB) = 1031656 + 0: The total amount of wall time = 155.943508 + 0: The maximum resident set size (KB) = 1031124 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3416,14 +3416,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 148.415922 - 0: The maximum resident set size (KB) = 983276 + 0: The total amount of wall time = 151.464200 + 0: The maximum resident set size (KB) = 979948 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.155926 - 0: The maximum resident set size (KB) = 942180 + 0: The total amount of wall time = 95.324843 + 0: The maximum resident set size (KB) = 950460 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3455,14 +3455,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 135.264512 - 0: The maximum resident set size (KB) = 992692 + 0: The total amount of wall time = 139.612384 + 0: The maximum resident set size (KB) = 987364 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3471,38 +3471,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.205629 - 0: The maximum resident set size (KB) = 1037516 + 0: The total amount of wall time = 169.266795 + 0: The maximum resident set size (KB) = 1023680 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 88.222295 - 0: The maximum resident set size (KB) = 1030212 + 0: The total amount of wall time = 85.918760 + 0: The maximum resident set size (KB) = 1020648 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 101.234247 - 0: The maximum resident set size (KB) = 1009584 + 0: The total amount of wall time = 91.335823 + 0: The maximum resident set size (KB) = 1011156 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_csawmg_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3513,14 +3513,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.150387 - 0: The maximum resident set size (KB) = 725496 + 0: The total amount of wall time = 340.535897 + 0: The maximum resident set size (KB) = 725240 Test 084 control_csawmg_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_csawmgt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3531,14 +3531,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.023707 - 0: The maximum resident set size (KB) = 717668 + 0: The total amount of wall time = 330.902195 + 0: The maximum resident set size (KB) = 727072 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_ras_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3549,26 +3549,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.217905 - 0: The maximum resident set size (KB) = 717684 + 0: The total amount of wall time = 184.829566 + 0: The maximum resident set size (KB) = 720176 Test 086 control_ras_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_wam_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.969502 - 0: The maximum resident set size (KB) = 640784 + 0: The total amount of wall time = 111.779766 + 0: The maximum resident set size (KB) = 638812 Test 087 control_wam_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3615,14 +3615,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.333134 - 0: The maximum resident set size (KB) = 1604524 + 0: The total amount of wall time = 157.105571 + 0: The maximum resident set size (KB) = 1597900 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_control_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3633,56 +3633,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.263975 - 0: The maximum resident set size (KB) = 865992 + 0: The total amount of wall time = 266.987013 + 0: The maximum resident set size (KB) = 867948 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 848.015733 - 0: The maximum resident set size (KB) = 1061044 + 0: The total amount of wall time = 812.546251 + 0: The maximum resident set size (KB) = 1060232 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.653857 - 0: The maximum resident set size (KB) = 964588 + 0: The total amount of wall time = 462.012344 + 0: The maximum resident set size (KB) = 974016 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 744.483970 - 0: The maximum resident set size (KB) = 1002004 + 0: The total amount of wall time = 735.248776 + 0: The maximum resident set size (KB) = 1021700 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_CubedSphereGrid_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3709,348 +3709,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 146.262063 - 0: The maximum resident set size (KB) = 791124 + 0: The total amount of wall time = 149.677284 + 0: The maximum resident set size (KB) = 786880 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.253678 - 0: The maximum resident set size (KB) = 791028 + 0: The total amount of wall time = 143.755380 + 0: The maximum resident set size (KB) = 791648 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_stochy_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.075567 - 0: The maximum resident set size (KB) = 794808 + 0: The total amount of wall time = 162.986607 + 0: The maximum resident set size (KB) = 797436 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.023564 - 0: The maximum resident set size (KB) = 796112 + 0: The total amount of wall time = 146.669395 + 0: The maximum resident set size (KB) = 788720 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_csawmg_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.089496 - 0: The maximum resident set size (KB) = 839588 + 0: The total amount of wall time = 226.768499 + 0: The maximum resident set size (KB) = 835244 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_csawmgt_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.489162 - 0: The maximum resident set size (KB) = 841972 + 0: The total amount of wall time = 223.706315 + 0: The maximum resident set size (KB) = 843496 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_ras_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.386778 - 0: The maximum resident set size (KB) = 806064 + 0: The total amount of wall time = 149.089187 + 0: The maximum resident set size (KB) = 804440 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.665353 - 0: The maximum resident set size (KB) = 846168 + 0: The total amount of wall time = 152.328887 + 0: The maximum resident set size (KB) = 842740 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.584492 - 0: The maximum resident set size (KB) = 1620648 + 0: The total amount of wall time = 167.411190 + 0: The maximum resident set size (KB) = 1616476 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 987.689741 - 0: The maximum resident set size (KB) = 871512 + 0: The total amount of wall time = 979.226486 + 0: The maximum resident set size (KB) = 884600 Test 102 regional_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.228102 - 0: The maximum resident set size (KB) = 1170620 + 0: The total amount of wall time = 271.011671 + 0: The maximum resident set size (KB) = 1169232 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.417950 - 0: The maximum resident set size (KB) = 1166312 + 0: The total amount of wall time = 260.545172 + 0: The maximum resident set size (KB) = 1171560 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_unified_drag_suite_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.070950 - 0: The maximum resident set size (KB) = 1174832 + 0: The total amount of wall time = 275.495126 + 0: The maximum resident set size (KB) = 1173572 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.045536 - 0: The maximum resident set size (KB) = 1252756 + 0: The total amount of wall time = 279.716748 + 0: The maximum resident set size (KB) = 1251492 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.569340 - 0: The maximum resident set size (KB) = 1174784 + 0: The total amount of wall time = 278.099885 + 0: The maximum resident set size (KB) = 1173064 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_unified_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.699326 - 0: The maximum resident set size (KB) = 1171892 + 0: The total amount of wall time = 280.567619 + 0: The maximum resident set size (KB) = 1174924 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.361787 - 0: The maximum resident set size (KB) = 1166540 + 0: The total amount of wall time = 272.400368 + 0: The maximum resident set size (KB) = 1173144 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_progcld_thompson_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.544700 - 0: The maximum resident set size (KB) = 1172404 + 0: The total amount of wall time = 272.757798 + 0: The maximum resident set size (KB) = 1171904 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_noah_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.095425 - 0: The maximum resident set size (KB) = 1167836 + 0: The total amount of wall time = 265.111237 + 0: The maximum resident set size (KB) = 1170180 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.181572 - 0: The maximum resident set size (KB) = 1167740 + 0: The total amount of wall time = 272.243488 + 0: The maximum resident set size (KB) = 1170724 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 454.916443 - 0: The maximum resident set size (KB) = 1170344 + 0: The total amount of wall time = 446.009116 + 0: The maximum resident set size (KB) = 1168492 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_v1beta_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.910013 - 0: The maximum resident set size (KB) = 1169720 + 0: The total amount of wall time = 267.652686 + 0: The maximum resident set size (KB) = 1168220 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_clm_lake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.096906 - 0: The maximum resident set size (KB) = 1174128 + 0: The total amount of wall time = 331.525107 + 0: The maximum resident set size (KB) = 1173340 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_flake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.403239 - 0: The maximum resident set size (KB) = 1173644 + 0: The total amount of wall time = 274.165620 + 0: The maximum resident set size (KB) = 1175992 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_wam_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 273.682975 - 0: The maximum resident set size (KB) = 516036 + 0: The total amount of wall time = 276.259675 + 0: The maximum resident set size (KB) = 530208 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4061,14 +4061,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.112208 - 0: The maximum resident set size (KB) = 1078968 + 0: The total amount of wall time = 214.182435 + 0: The maximum resident set size (KB) = 1077592 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4115,14 +4115,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.278335 - 0: The maximum resident set size (KB) = 996720 + 0: The total amount of wall time = 373.033376 + 0: The maximum resident set size (KB) = 1000404 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4169,14 +4169,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.962207 - 0: The maximum resident set size (KB) = 954904 + 0: The total amount of wall time = 191.481234 + 0: The maximum resident set size (KB) = 945072 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4223,14 +4223,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.215382 - 0: The maximum resident set size (KB) = 958484 + 0: The total amount of wall time = 190.079027 + 0: The maximum resident set size (KB) = 966560 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4277,14 +4277,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.386206 - 0: The maximum resident set size (KB) = 1018240 + 0: The total amount of wall time = 350.221034 + 0: The maximum resident set size (KB) = 1016872 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4331,14 +4331,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.159158 - 0: The maximum resident set size (KB) = 934712 + 0: The total amount of wall time = 176.314139 + 0: The maximum resident set size (KB) = 936380 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4385,14 +4385,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.376989 - 0: The maximum resident set size (KB) = 888088 + 0: The total amount of wall time = 202.225405 + 0: The maximum resident set size (KB) = 885708 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4431,42 +4431,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.783736 - 0: The maximum resident set size (KB) = 943060 + 0: The total amount of wall time = 273.600780 + 0: The maximum resident set size (KB) = 941668 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.016163 - 0: The maximum resident set size (KB) = 864432 + 0: The total amount of wall time = 98.824165 + 0: The maximum resident set size (KB) = 861360 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.815983 - 0: The maximum resident set size (KB) = 878252 + 0: The total amount of wall time = 101.228472 + 0: The maximum resident set size (KB) = 884380 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4482,14 +4482,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 118.486518 - 0: The maximum resident set size (KB) = 905920 + 0: The total amount of wall time = 115.801583 + 0: The maximum resident set size (KB) = 900348 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4505,38 +4505,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.968076 - 0: The maximum resident set size (KB) = 934016 + 0: The total amount of wall time = 111.827886 + 0: The maximum resident set size (KB) = 932612 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 67.198479 - 0: The maximum resident set size (KB) = 902972 + 0: The total amount of wall time = 68.564996 + 0: The maximum resident set size (KB) = 897420 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 74.781773 - 0: The maximum resident set size (KB) = 915468 + 0: The total amount of wall time = 74.785403 + 0: The maximum resident set size (KB) = 915432 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_dyn64_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4583,81 +4583,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.677322 - 0: The maximum resident set size (KB) = 962604 + 0: The total amount of wall time = 239.225863 + 0: The maximum resident set size (KB) = 962948 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.021361 - 0: The maximum resident set size (KB) = 1050696 + 0: The total amount of wall time = 265.335313 + 0: The maximum resident set size (KB) = 1054688 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.567430 - 0: The maximum resident set size (KB) = 1050756 + 0: The total amount of wall time = 257.382134 + 0: The maximum resident set size (KB) = 1054416 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.870353 - 0: The maximum resident set size (KB) = 1094708 + 0: The total amount of wall time = 280.332118 + 0: The maximum resident set size (KB) = 1091380 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 233.106596 - 0: The maximum resident set size (KB) = 1046628 + 0: The total amount of wall time = 224.525521 + 0: The maximum resident set size (KB) = 1048036 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 363.092572 - 0: The maximum resident set size (KB) = 1413688 + 0: The total amount of wall time = 362.115485 + 0: The maximum resident set size (KB) = 1372356 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 385.274136 - 0: The maximum resident set size (KB) = 1219656 + 0: The total amount of wall time = 381.580473 + 0: The maximum resident set size (KB) = 1220032 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_atm_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4682,14 +4682,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 754.772249 - 0: The maximum resident set size (KB) = 1244884 + 0: The total amount of wall time = 740.358771 + 0: The maximum resident set size (KB) = 1257076 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4700,14 +4700,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 851.535601 - 0: The maximum resident set size (KB) = 1269688 + 0: The total amount of wall time = 846.685264 + 0: The maximum resident set size (KB) = 1265600 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4729,14 +4729,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 299.491387 - 0: The maximum resident set size (KB) = 502140 + 0: The total amount of wall time = 295.657403 + 0: The maximum resident set size (KB) = 501008 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4758,14 +4758,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 326.498859 - 0: The maximum resident set size (KB) = 473460 + 0: The total amount of wall time = 313.523425 + 0: The maximum resident set size (KB) = 471428 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4774,14 +4774,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 344.500631 - 0: The maximum resident set size (KB) = 506384 + 0: The total amount of wall time = 336.928151 + 0: The maximum resident set size (KB) = 510592 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_global_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4828,14 +4828,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 141.026918 - 0: The maximum resident set size (KB) = 349028 + 0: The total amount of wall time = 136.787269 + 0: The maximum resident set size (KB) = 347924 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4882,14 +4882,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 149.781263 - 0: The maximum resident set size (KB) = 352192 + 0: The total amount of wall time = 145.588074 + 0: The maximum resident set size (KB) = 351112 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4971,14 +4971,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 395.206697 - 0: The maximum resident set size (KB) = 447596 + 0: The total amount of wall time = 388.603687 + 0: The maximum resident set size (KB) = 419936 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 470.015215 - 0: The maximum resident set size (KB) = 465660 + 0: The total amount of wall time = 472.001864 + 0: The maximum resident set size (KB) = 448008 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5076,14 +5076,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 196.441161 - 0: The maximum resident set size (KB) = 518172 + 0: The total amount of wall time = 191.658035 + 0: The maximum resident set size (KB) = 519512 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5105,14 +5105,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 182.672641 - 0: The maximum resident set size (KB) = 518324 + 0: The total amount of wall time = 179.548842 + 0: The maximum resident set size (KB) = 516880 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5134,14 +5134,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 204.789807 - 0: The maximum resident set size (KB) = 497900 + 0: The total amount of wall time = 191.646480 + 0: The maximum resident set size (KB) = 503028 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5150,42 +5150,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 223.375087 - 0: The maximum resident set size (KB) = 565424 + 0: The total amount of wall time = 221.135240 + 0: The maximum resident set size (KB) = 563772 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.278106 - 0: The maximum resident set size (KB) = 367904 + 0: The total amount of wall time = 55.369753 + 0: The maximum resident set size (KB) = 363096 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 725.623501 - 0: The maximum resident set size (KB) = 584632 + 0: The total amount of wall time = 708.555124 + 0: The maximum resident set size (KB) = 585320 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,14 +5196,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 500.752497 - 0: The maximum resident set size (KB) = 617788 + 0: The total amount of wall time = 482.851755 + 0: The maximum resident set size (KB) = 616356 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_docn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5211,14 +5211,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 362.660782 - 0: The maximum resident set size (KB) = 1232476 + 0: The total amount of wall time = 344.355364 + 0: The maximum resident set size (KB) = 1231060 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_docn_oisst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5226,131 +5226,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.108271 - 0: The maximum resident set size (KB) = 1218556 + 0: The total amount of wall time = 346.130867 + 0: The maximum resident set size (KB) = 1220096 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hafs_regional_datm_cdeps_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 984.584176 - 0: The maximum resident set size (KB) = 1036084 + 0: The total amount of wall time = 951.979227 + 0: The maximum resident set size (KB) = 1032856 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_control_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.669313 - 0: The maximum resident set size (KB) = 1067076 + 0: The total amount of wall time = 153.489182 + 0: The maximum resident set size (KB) = 1052904 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 98.198455 - 0: The maximum resident set size (KB) = 1028920 + 0: The total amount of wall time = 89.734949 + 0: The maximum resident set size (KB) = 1012412 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_control_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.616446 - 0: The maximum resident set size (KB) = 960808 + 0: The total amount of wall time = 146.447671 + 0: The maximum resident set size (KB) = 958624 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_iau_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.569311 - 0: The maximum resident set size (KB) = 968372 + 0: The total amount of wall time = 151.721255 + 0: The maximum resident set size (KB) = 962840 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.965233 - 0: The maximum resident set size (KB) = 961308 + 0: The total amount of wall time = 149.593132 + 0: The maximum resident set size (KB) = 960124 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.065603 - 0: The maximum resident set size (KB) = 1052348 + 0: The total amount of wall time = 157.470711 + 0: The maximum resident set size (KB) = 1049436 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.598309 - 0: The maximum resident set size (KB) = 1058120 + 0: The total amount of wall time = 150.537279 + 0: The maximum resident set size (KB) = 1057992 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.119159 - 0: The maximum resident set size (KB) = 965576 + 0: The total amount of wall time = 146.340040 + 0: The maximum resident set size (KB) = 958484 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5359,14 +5359,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 496.937132 - 0: The maximum resident set size (KB) = 878300 + 0: The total amount of wall time = 448.952025 + 0: The maximum resident set size (KB) = 874740 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5375,77 +5375,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.595642 - 0: The maximum resident set size (KB) = 929532 + 0: The total amount of wall time = 422.125733 + 0: The maximum resident set size (KB) = 924920 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.302866 - 0: The maximum resident set size (KB) = 1076164 + 0: The total amount of wall time = 151.104823 + 0: The maximum resident set size (KB) = 1050116 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 228.800437 - 0: The maximum resident set size (KB) = 2363080 + 0: The total amount of wall time = 219.062268 + 0: The maximum resident set size (KB) = 2294856 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_gfs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 228.590962 - 0: The maximum resident set size (KB) = 2306868 + 0: The total amount of wall time = 216.946332 + 0: The maximum resident set size (KB) = 2348052 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 349.888428 - 0: The maximum resident set size (KB) = 986352 + 0: The total amount of wall time = 368.085708 + 0: The maximum resident set size (KB) = 971764 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.791824 - 0: The maximum resident set size (KB) = 1067292 + 0: The total amount of wall time = 149.018550 + 0: The maximum resident set size (KB) = 1053884 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5454,14 +5454,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 15.856583 - 0: The maximum resident set size (KB) = 259472 + 0: The total amount of wall time = 8.407654 + 0: The maximum resident set size (KB) = 261396 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5470,14 +5470,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 17.789482 - 0: The maximum resident set size (KB) = 262160 + 0: The total amount of wall time = 12.556768 + 0: The maximum resident set size (KB) = 264940 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_atmlnd_sbs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5562,14 +5562,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 228.354100 - 0: The maximum resident set size (KB) = 1615608 + 0: The total amount of wall time = 206.334875 + 0: The maximum resident set size (KB) = 1601596 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/atmwav_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5612,14 +5612,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 97.267593 - 0: The maximum resident set size (KB) = 1637096 + 0: The total amount of wall time = 94.056613 + 0: The maximum resident set size (KB) = 1638756 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_atmwav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5663,14 +5663,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 95.637365 - 0: The maximum resident set size (KB) = 661508 + 0: The total amount of wall time = 88.732844 + 0: The maximum resident set size (KB) = 655812 Test 177 control_atmwav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/atmaero_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5714,14 +5714,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.527830 - 0: The maximum resident set size (KB) = 2979584 + 0: The total amount of wall time = 229.689117 + 0: The maximum resident set size (KB) = 2978860 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/atmaero_control_p8_rad_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5765,14 +5765,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.066059 - 0: The maximum resident set size (KB) = 3049700 + 0: The total amount of wall time = 282.746489 + 0: The maximum resident set size (KB) = 3037268 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5816,14 +5816,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.584968 - 0: The maximum resident set size (KB) = 3050980 + 0: The total amount of wall time = 284.545921 + 0: The maximum resident set size (KB) = 3060300 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_atmaq_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5839,14 +5839,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 685.063816 - 0: The maximum resident set size (KB) = 1469076 + 0: The total amount of wall time = 638.589007 + 0: The maximum resident set size (KB) = 1454988 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_atmaq_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5860,14 +5860,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1225.569875 - 0: The maximum resident set size (KB) = 1393208 + 0: The total amount of wall time = 1197.871006 + 0: The maximum resident set size (KB) = 1398340 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_atmaq_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5883,14 +5883,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 617.178989 - 0: The maximum resident set size (KB) = 1461692 + 0: The total amount of wall time = 553.422668 + 0: The maximum resident set size (KB) = 1455144 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_c48_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5929,14 +5929,14 @@ Checking test 184 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 683.113486 -0: The maximum resident set size (KB) = 705152 +0: The total amount of wall time = 686.102344 +0: The maximum resident set size (KB) = 702152 Test 184 control_c48_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_stochy_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5947,14 +5947,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 648.068774 - 0: The maximum resident set size (KB) = 479920 + 0: The total amount of wall time = 662.122036 + 0: The maximum resident set size (KB) = 474952 Test 185 control_stochy_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_ras_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5965,14 +5965,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 849.223526 - 0: The maximum resident set size (KB) = 486656 + 0: The total amount of wall time = 834.227962 + 0: The maximum resident set size (KB) = 485452 Test 186 control_ras_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6019,14 +6019,14 @@ Checking test 187 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 901.515973 - 0: The maximum resident set size (KB) = 1233244 + 0: The total amount of wall time = 913.358126 + 0: The maximum resident set size (KB) = 1235460 Test 187 control_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_flake_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6037,14 +6037,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1555.325711 - 0: The maximum resident set size (KB) = 523004 + 0: The total amount of wall time = 1534.918757 + 0: The maximum resident set size (KB) = 522920 Test 188 control_flake_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6091,14 +6091,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1443.816382 - 0: The maximum resident set size (KB) = 827904 + 0: The total amount of wall time = 1457.672899 + 0: The maximum resident set size (KB) = 832292 Test 189 rap_control_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6145,14 +6145,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.999936 - 0: The maximum resident set size (KB) = 835540 + 0: The total amount of wall time = 1442.032886 + 0: The maximum resident set size (KB) = 834776 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6199,14 +6199,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1311.418788 - 0: The maximum resident set size (KB) = 898788 + 0: The total amount of wall time = 1346.268574 + 0: The maximum resident set size (KB) = 901064 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6245,14 +6245,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 730.943379 - 0: The maximum resident set size (KB) = 549028 + 0: The total amount of wall time = 713.722136 + 0: The maximum resident set size (KB) = 549216 Test 192 rap_restart_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6299,14 +6299,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1515.772957 - 0: The maximum resident set size (KB) = 826836 + 0: The total amount of wall time = 1488.248917 + 0: The maximum resident set size (KB) = 833256 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6353,14 +6353,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1453.669300 - 0: The maximum resident set size (KB) = 834108 + 0: The total amount of wall time = 1454.293258 + 0: The maximum resident set size (KB) = 827552 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_sfcdiff_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6399,14 +6399,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1098.749137 - 0: The maximum resident set size (KB) = 539980 + 0: The total amount of wall time = 1059.791658 + 0: The maximum resident set size (KB) = 542292 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6453,14 +6453,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1412.840142 - 0: The maximum resident set size (KB) = 829372 + 0: The total amount of wall time = 1428.453401 + 0: The maximum resident set size (KB) = 825656 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_qr_gnu Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6507,14 +6507,14 @@ Checking test 197 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1517.597282 - 0: The maximum resident set size (KB) = 841580 + 0: The total amount of wall time = 1465.394086 + 0: The maximum resident set size (KB) = 839980 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6561,14 +6561,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1516.699576 - 0: The maximum resident set size (KB) = 893304 + 0: The total amount of wall time = 1491.080803 + 0: The maximum resident set size (KB) = 895564 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6615,42 +6615,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.196423 - 0: The maximum resident set size (KB) = 831320 + 0: The total amount of wall time = 1420.236671 + 0: The maximum resident set size (KB) = 832524 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1080.618015 - 0: The maximum resident set size (KB) = 549756 + 0: The total amount of wall time = 1059.851865 + 0: The maximum resident set size (KB) = 549360 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1063.090417 - 0: The maximum resident set size (KB) = 566540 + 0: The total amount of wall time = 1071.528938 + 0: The maximum resident set size (KB) = 566584 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_v1beta_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6697,14 +6697,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.197726 - 0: The maximum resident set size (KB) = 826876 + 0: The total amount of wall time = 1466.977286 + 0: The maximum resident set size (KB) = 827748 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6720,14 +6720,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 792.711943 - 0: The maximum resident set size (KB) = 665948 + 0: The total amount of wall time = 788.570334 + 0: The maximum resident set size (KB) = 665136 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6743,14 +6743,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 848.382406 - 0: The maximum resident set size (KB) = 619312 + 0: The total amount of wall time = 877.608531 + 0: The maximum resident set size (KB) = 619632 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6759,14 +6759,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1068.219907 - 0: The maximum resident set size (KB) = 660844 + 0: The total amount of wall time = 1067.471439 + 0: The maximum resident set size (KB) = 661888 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6775,14 +6775,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 804.665841 - 0: The maximum resident set size (KB) = 667376 + 0: The total amount of wall time = 789.736829 + 0: The maximum resident set size (KB) = 668668 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6798,274 +6798,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 765.419281 - 0: The maximum resident set size (KB) = 644216 + 0: The total amount of wall time = 773.703499 + 0: The maximum resident set size (KB) = 643584 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 438.766088 - 0: The maximum resident set size (KB) = 656424 + 0: The total amount of wall time = 415.432404 + 0: The maximum resident set size (KB) = 653820 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 478.749745 - 0: The maximum resident set size (KB) = 677596 + 0: The total amount of wall time = 480.598519 + 0: The maximum resident set size (KB) = 677348 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_diag_debug_gnu Checking test 210 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.006792 - 0: The maximum resident set size (KB) = 527716 + 0: The total amount of wall time = 123.487442 + 0: The maximum resident set size (KB) = 520884 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/regional_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/regional_debug_gnu Checking test 211 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 620.478399 - 0: The maximum resident set size (KB) = 587896 + 0: The total amount of wall time = 749.631384 + 0: The maximum resident set size (KB) = 590540 Test 211 regional_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_debug_gnu Checking test 212 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.402545 - 0: The maximum resident set size (KB) = 843676 + 0: The total amount of wall time = 175.565921 + 0: The maximum resident set size (KB) = 841292 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_debug_gnu Checking test 213 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.606524 - 0: The maximum resident set size (KB) = 838704 + 0: The total amount of wall time = 172.715021 + 0: The maximum resident set size (KB) = 839848 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_diag_debug_gnu Checking test 214 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.858990 - 0: The maximum resident set size (KB) = 923812 + 0: The total amount of wall time = 205.669431 + 0: The maximum resident set size (KB) = 925484 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.186044 - 0: The maximum resident set size (KB) = 843576 + 0: The total amount of wall time = 277.198220 + 0: The maximum resident set size (KB) = 844616 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_progcld_thompson_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_progcld_thompson_debug_gnu Checking test 216 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.369089 - 0: The maximum resident set size (KB) = 844864 + 0: The total amount of wall time = 175.390492 + 0: The maximum resident set size (KB) = 844668 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_v1beta_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_v1beta_debug_gnu Checking test 217 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.828375 - 0: The maximum resident set size (KB) = 833700 + 0: The total amount of wall time = 176.092328 + 0: The maximum resident set size (KB) = 836616 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_ras_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_ras_debug_gnu Checking test 218 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.561112 - 0: The maximum resident set size (KB) = 479784 + 0: The total amount of wall time = 102.767091 + 0: The maximum resident set size (KB) = 480160 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_stochy_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.201709 - 0: The maximum resident set size (KB) = 470460 + 0: The total amount of wall time = 119.749733 + 0: The maximum resident set size (KB) = 474540 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_debug_p8_gnu Checking test 220 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.004160 - 0: The maximum resident set size (KB) = 1227952 + 0: The total amount of wall time = 115.404287 + 0: The maximum resident set size (KB) = 1229364 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 624.831215 - 0: The maximum resident set size (KB) = 677864 + 0: The total amount of wall time = 617.233099 + 0: The maximum resident set size (KB) = 676144 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 772.370995 - 0: The maximum resident set size (KB) = 675156 + 0: The total amount of wall time = 797.897413 + 0: The maximum resident set size (KB) = 676360 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 573.803189 - 0: The maximum resident set size (KB) = 652108 + 0: The total amount of wall time = 594.815121 + 0: The maximum resident set size (KB) = 657220 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_flake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_flake_debug_gnu Checking test 224 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.119404 - 0: The maximum resident set size (KB) = 840584 + 0: The total amount of wall time = 177.575349 + 0: The maximum resident set size (KB) = 837000 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_clm_lake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_clm_lake_debug_gnu Checking test 225 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.921416 - 0: The maximum resident set size (KB) = 840116 + 0: The total amount of wall time = 197.544399 + 0: The maximum resident set size (KB) = 846056 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/control_wam_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.349753 - 0: The maximum resident set size (KB) = 193480 + 0: The total amount of wall time = 181.168971 + 0: The maximum resident set size (KB) = 190024 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7112,14 +7112,14 @@ Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1458.201793 - 0: The maximum resident set size (KB) = 693288 + 0: The total amount of wall time = 1484.565922 + 0: The maximum resident set size (KB) = 686008 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7166,14 +7166,14 @@ Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.935355 - 0: The maximum resident set size (KB) = 684552 + 0: The total amount of wall time = 729.008343 + 0: The maximum resident set size (KB) = 689636 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7220,14 +7220,14 @@ Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 738.307388 - 0: The maximum resident set size (KB) = 696332 + 0: The total amount of wall time = 758.962444 + 0: The maximum resident set size (KB) = 694200 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7274,14 +7274,14 @@ Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1335.375267 - 0: The maximum resident set size (KB) = 732496 + 0: The total amount of wall time = 1323.134192 + 0: The maximum resident set size (KB) = 733712 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7328,14 +7328,14 @@ Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 773.378746 - 0: The maximum resident set size (KB) = 731144 + 0: The total amount of wall time = 750.214565 + 0: The maximum resident set size (KB) = 729292 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7382,14 +7382,14 @@ Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.320140 - 0: The maximum resident set size (KB) = 687640 + 0: The total amount of wall time = 705.157617 + 0: The maximum resident set size (KB) = 684392 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7428,42 +7428,42 @@ Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1061.734631 - 0: The maximum resident set size (KB) = 512276 + 0: The total amount of wall time = 1066.092141 + 0: The maximum resident set size (KB) = 514800 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 367.681539 - 0: The maximum resident set size (KB) = 506028 + 0: The total amount of wall time = 359.927318 + 0: The maximum resident set size (KB) = 509472 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 383.885820 - 0: The maximum resident set size (KB) = 530008 + 0: The total amount of wall time = 371.535095 + 0: The maximum resident set size (KB) = 526584 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7479,14 +7479,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 765.532660 - 0: The maximum resident set size (KB) = 581672 + 0: The total amount of wall time = 802.308624 + 0: The maximum resident set size (KB) = 584980 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7496,44 +7496,44 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 803.448822 - 0: The maximum resident set size (KB) = 574836 + 0: The total amount of wall time = 811.158324 + 0: The maximum resident set size (KB) = 576168 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 416.738080 - 0: The maximum resident set size (KB) = 575152 + 0: The total amount of wall time = 408.765152 + 0: The maximum resident set size (KB) = 575708 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 410.589791 - 0: The maximum resident set size (KB) = 596264 + 0: The total amount of wall time = 424.324085 + 0: The maximum resident set size (KB) = 597800 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_dyn64_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7580,56 +7580,56 @@ Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1085.344881 - 0: The maximum resident set size (KB) = 712612 + 0: The total amount of wall time = 1087.516426 + 0: The maximum resident set size (KB) = 710268 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_debug_dyn32_phy32_gnu Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.271511 - 0: The maximum resident set size (KB) = 699892 + 0: The total amount of wall time = 174.038785 + 0: The maximum resident set size (KB) = 698656 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.873652 - 0: The maximum resident set size (KB) = 696112 + 0: The total amount of wall time = 172.566552 + 0: The maximum resident set size (KB) = 696896 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/rap_control_dyn64_phy32_debug_gnu Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.290131 - 0: The maximum resident set size (KB) = 718200 + 0: The total amount of wall time = 206.112546 + 0: The maximum resident set size (KB) = 719672 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7694,14 +7694,14 @@ Checking test 244 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1721.028193 - 0: The maximum resident set size (KB) = 1425344 + 0: The total amount of wall time = 1986.295966 + 0: The maximum resident set size (KB) = 1423528 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7763,14 +7763,14 @@ Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1245.233289 - 0: The maximum resident set size (KB) = 1331744 + 0: The total amount of wall time = 1222.802518 + 0: The maximum resident set size (KB) = 1332204 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7823,14 +7823,14 @@ Checking test 246 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 2193.420613 - 0: The maximum resident set size (KB) = 1442360 + 0: The total amount of wall time = 1459.066153 + 0: The maximum resident set size (KB) = 1438568 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_control_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7894,14 +7894,14 @@ Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1708.901969 - 0: The maximum resident set size (KB) = 1291616 + 0: The total amount of wall time = 1702.341042 + 0: The maximum resident set size (KB) = 1293444 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7953,25 +7953,25 @@ Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 921.251241 - 0: The maximum resident set size (KB) = 1300404 + 0: The total amount of wall time = 925.032172 + 0: The maximum resident set size (KB) = 1304532 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_20889/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_222996/datm_cdeps_control_cfsr_gnu Checking test 249 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 184.140086 - 0: The maximum resident set size (KB) = 663532 + 0: The total amount of wall time = 174.293066 + 0: The maximum resident set size (KB) = 656632 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 27 02:43:40 UTC 2023 -Elapsed time: 02h:09m:23s. Have a nice day! +Fri Jul 28 15:50:12 UTC 2023 +Elapsed time: 06h:54m:42s. Have a nice day! From abc615e456d93b14e4c5757ac1d905effa0a4abb Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Sat, 12 Aug 2023 16:48:33 +0000 Subject: [PATCH 07/20] hera tests passed --- tests/logs/RegressionTests_hera.log | 2110 +++++++++++++-------------- 1 file changed, 1055 insertions(+), 1055 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 881de9e10c..8aab9d261e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Sat Aug 5 02:56:58 UTC 2023 +Fri Aug 11 20:17:53 UTC 2023 Start Regression test -Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f +Testing UFSWM Hash: c8b0888c1212b4dbfa235467690ad01ea06ed7de Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + 933f807a05a1ef9570efcaa22c1fbfb94893ebaa ../FV3 (heads/tanya-fix-20230724) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 189 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 200 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 288 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 551 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 548 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 542 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 534 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 540 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 574 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 104 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 136 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 583 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 200 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 591 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 632 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 257 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 184 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 189 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 286 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 531 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 550 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 541 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 544 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 577 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 125 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 595 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 195 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 599 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 589 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 603 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 620 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 248 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 627 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 261 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 668 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 150 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 264 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 267 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 940 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 692 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 165 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 267 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 997 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 290 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 697 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_p8_mixedmode_intel +Compile rrfs_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 597 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 243 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 589 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 241 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 146 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 262 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 944 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 667 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 159 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 272 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 275 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 673 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 107 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.584774 - 0: The maximum resident set size (KB) = 3156404 + 0: The total amount of wall time = 315.753983 + 0: The maximum resident set size (KB) = 3138772 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_gfsv17_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 218.329627 - 0: The maximum resident set size (KB) = 1698772 + 0: The total amount of wall time = 220.225987 + 0: The maximum resident set size (KB) = 1691124 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.930196 - 0: The maximum resident set size (KB) = 3196344 + 0: The total amount of wall time = 352.503375 + 0: The maximum resident set size (KB) = 3184060 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.500848 - 0: The maximum resident set size (KB) = 3054476 + 0: The total amount of wall time = 197.928364 + 0: The maximum resident set size (KB) = 3059244 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.002207 - 0: The maximum resident set size (KB) = 3204184 + 0: The total amount of wall time = 346.164081 + 0: The maximum resident set size (KB) = 3201492 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 200.144545 - 0: The maximum resident set size (KB) = 3043092 + 0: The total amount of wall time = 206.950513 + 0: The maximum resident set size (KB) = 3077112 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.094941 - 0: The maximum resident set size (KB) = 3531408 + 0: The total amount of wall time = 331.818285 + 0: The maximum resident set size (KB) = 3525512 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.339493 - 0: The maximum resident set size (KB) = 3183196 + 0: The total amount of wall time = 350.104257 + 0: The maximum resident set size (KB) = 3176224 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_mpi_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 284.975982 - 0: The maximum resident set size (KB) = 3038324 + 0: The total amount of wall time = 287.079585 + 0: The maximum resident set size (KB) = 3039672 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_ciceC_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.106606 - 0: The maximum resident set size (KB) = 3190452 + 0: The total amount of wall time = 347.421324 + 0: The maximum resident set size (KB) = 3179288 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 588.000295 - 0: The maximum resident set size (KB) = 3306732 + 0: The total amount of wall time = 594.802712 + 0: The maximum resident set size (KB) = 3308052 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_restart_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 377.095306 - 0: The maximum resident set size (KB) = 3217192 + 0: The total amount of wall time = 384.402003 + 0: The maximum resident set size (KB) = 3199340 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 662.613992 - 0: The maximum resident set size (KB) = 4105044 + 0: The total amount of wall time = 684.847502 + 0: The maximum resident set size (KB) = 4036804 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_restart_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 419.266968 - 0: The maximum resident set size (KB) = 4033304 + 0: The total amount of wall time = 408.799884 + 0: The maximum resident set size (KB) = 4014332 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 264.263706 - 0: The maximum resident set size (KB) = 1714704 + 0: The total amount of wall time = 268.865750 + 0: The maximum resident set size (KB) = 1717624 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.831608 - 0: The maximum resident set size (KB) = 1765308 + 0: The total amount of wall time = 263.927771 + 0: The maximum resident set size (KB) = 1757588 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.449828 - 0: The maximum resident set size (KB) = 3214468 + 0: The total amount of wall time = 527.953691 + 0: The maximum resident set size (KB) = 3232612 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_debug_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.373315 - 0: The maximum resident set size (KB) = 1745496 + 0: The total amount of wall time = 351.070519 + 0: The maximum resident set size (KB) = 1738776 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.028086 - 0: The maximum resident set size (KB) = 1766628 + 0: The total amount of wall time = 269.633068 + 0: The maximum resident set size (KB) = 1759652 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 590.430438 - 0: The maximum resident set size (KB) = 2818760 + 0: The total amount of wall time = 589.864839 + 0: The maximum resident set size (KB) = 2800240 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.298794 - 0: The maximum resident set size (KB) = 3185800 + 0: The total amount of wall time = 328.675792 + 0: The maximum resident set size (KB) = 3174800 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1182.628122 - 0: The maximum resident set size (KB) = 1756412 + 0: The total amount of wall time = 1188.048901 + 0: The maximum resident set size (KB) = 1750172 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_restart_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.718341 - 0: The maximum resident set size (KB) = 1029488 + 0: The total amount of wall time = 564.329841 + 0: The maximum resident set size (KB) = 1028452 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1083.428601 - 0: The maximum resident set size (KB) = 1660720 + 0: The total amount of wall time = 1083.480811 + 0: The maximum resident set size (KB) = 1643216 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_debug_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1385.543489 - 0: The maximum resident set size (KB) = 1690692 + 0: The total amount of wall time = 1363.729492 + 0: The maximum resident set size (KB) = 1669364 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_flake_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.950452 - 0: The maximum resident set size (KB) = 690100 + 0: The total amount of wall time = 192.603882 + 0: The maximum resident set size (KB) = 686280 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_CubedSphereGrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 137.660311 - 0: The maximum resident set size (KB) = 630492 + 0: The total amount of wall time = 133.004327 + 0: The maximum resident set size (KB) = 640524 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.931565 - 0: The maximum resident set size (KB) = 646448 + 0: The total amount of wall time = 142.695440 + 0: The maximum resident set size (KB) = 645116 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_latlon_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.611191 - 0: The maximum resident set size (KB) = 632644 + 0: The total amount of wall time = 133.522227 + 0: The maximum resident set size (KB) = 633636 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.028073 - 0: The maximum resident set size (KB) = 639252 + 0: The total amount of wall time = 138.021712 + 0: The maximum resident set size (KB) = 637444 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 369.034887 -0: The maximum resident set size (KB) = 833600 +0: The total amount of wall time = 374.914802 +0: The maximum resident set size (KB) = 821960 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_c192_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 522.836669 - 0: The maximum resident set size (KB) = 788940 + 0: The total amount of wall time = 537.632774 + 0: The maximum resident set size (KB) = 784556 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_c384_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.623239 - 0: The maximum resident set size (KB) = 1284260 + 0: The total amount of wall time = 533.514049 + 0: The maximum resident set size (KB) = 1285796 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_c384gdas_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.468553 - 0: The maximum resident set size (KB) = 1404624 + 0: The total amount of wall time = 468.636666 + 0: The maximum resident set size (KB) = 1399712 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_stochy_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.337850 - 0: The maximum resident set size (KB) = 642876 + 0: The total amount of wall time = 88.489746 + 0: The maximum resident set size (KB) = 645348 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_stochy_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.342494 - 0: The maximum resident set size (KB) = 503036 + 0: The total amount of wall time = 51.578350 + 0: The maximum resident set size (KB) = 498092 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.703883 - 0: The maximum resident set size (KB) = 646976 + 0: The total amount of wall time = 81.400982 + 0: The maximum resident set size (KB) = 639848 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_iovr4_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.453655 - 0: The maximum resident set size (KB) = 637824 + 0: The total amount of wall time = 138.651199 + 0: The maximum resident set size (KB) = 638200 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_iovr5_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.561627 - 0: The maximum resident set size (KB) = 637316 + 0: The total amount of wall time = 142.905814 + 0: The maximum resident set size (KB) = 635772 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.528290 - 0: The maximum resident set size (KB) = 1602328 + 0: The total amount of wall time = 178.854719 + 0: The maximum resident set size (KB) = 1604332 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.200422 - 0: The maximum resident set size (KB) = 886232 + 0: The total amount of wall time = 91.833158 + 0: The maximum resident set size (KB) = 876400 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.114135 - 0: The maximum resident set size (KB) = 1624820 + 0: The total amount of wall time = 170.415062 + 0: The maximum resident set size (KB) = 1613852 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.615080 - 0: The maximum resident set size (KB) = 874804 + 0: The total amount of wall time = 93.746496 + 0: The maximum resident set size (KB) = 879184 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.804993 - 0: The maximum resident set size (KB) = 1600460 + 0: The total amount of wall time = 178.072398 + 0: The maximum resident set size (KB) = 1585148 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.902619 - 0: The maximum resident set size (KB) = 1695856 + 0: The total amount of wall time = 160.950745 + 0: The maximum resident set size (KB) = 1688284 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 309.634018 - 0: The maximum resident set size (KB) = 1610756 + 0: The total amount of wall time = 322.825912 + 0: The maximum resident set size (KB) = 1620844 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_rrtmgp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.676369 - 0: The maximum resident set size (KB) = 1662448 + 0: The total amount of wall time = 228.499701 + 0: The maximum resident set size (KB) = 1677068 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_mynn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.104111 - 0: The maximum resident set size (KB) = 1609448 + 0: The total amount of wall time = 183.705214 + 0: The maximum resident set size (KB) = 1590492 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/merra2_thompson_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.733616 - 0: The maximum resident set size (KB) = 1615536 + 0: The total amount of wall time = 194.810472 + 0: The maximum resident set size (KB) = 1611700 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.715285 - 0: The maximum resident set size (KB) = 875668 + 0: The total amount of wall time = 296.558195 + 0: The maximum resident set size (KB) = 881992 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 147.713663 - 0: The maximum resident set size (KB) = 874344 + 0: The total amount of wall time = 152.372043 + 0: The maximum resident set size (KB) = 872120 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.033089 - 0: The maximum resident set size (KB) = 883764 + 0: The total amount of wall time = 297.929209 + 0: The maximum resident set size (KB) = 880552 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 146.695987 - 0: The maximum resident set size (KB) = 872348 + 0: The total amount of wall time = 152.122589 + 0: The maximum resident set size (KB) = 869904 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 305.922804 - 0: The maximum resident set size (KB) = 879468 + 0: The total amount of wall time = 315.302809 + 0: The maximum resident set size (KB) = 875092 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 175.871761 - 0: The maximum resident set size (KB) = 862004 + 0: The total amount of wall time = 183.008743 + 0: The maximum resident set size (KB) = 853996 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_noquilt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 289.037944 - 0: The maximum resident set size (KB) = 861836 + 0: The total amount of wall time = 296.147955 + 0: The maximum resident set size (KB) = 857180 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.729027 - 0: The maximum resident set size (KB) = 873424 + 0: The total amount of wall time = 291.490988 + 0: The maximum resident set size (KB) = 873400 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_2dwrtdecomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.063192 - 0: The maximum resident set size (KB) = 884288 + 0: The total amount of wall time = 298.609734 + 0: The maximum resident set size (KB) = 881244 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_wofs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.925294 - 0: The maximum resident set size (KB) = 642836 + 0: The total amount of wall time = 376.623401 + 0: The maximum resident set size (KB) = 643792 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.572300 - 0: The maximum resident set size (KB) = 1067060 + 0: The total amount of wall time = 453.975175 + 0: The maximum resident set size (KB) = 1066640 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 229.198798 - 0: The maximum resident set size (KB) = 1201612 + 0: The total amount of wall time = 238.540281 + 0: The maximum resident set size (KB) = 1199280 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.599724 - 0: The maximum resident set size (KB) = 1008820 + 0: The total amount of wall time = 470.086717 + 0: The maximum resident set size (KB) = 1009748 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 416.048846 - 0: The maximum resident set size (KB) = 1150316 + 0: The total amount of wall time = 427.504865 + 0: The maximum resident set size (KB) = 1150936 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.616959 - 0: The maximum resident set size (KB) = 973436 + 0: The total amount of wall time = 228.033263 + 0: The maximum resident set size (KB) = 963944 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.271085 - 0: The maximum resident set size (KB) = 1075984 + 0: The total amount of wall time = 457.893201 + 0: The maximum resident set size (KB) = 1060788 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.713440 - 0: The maximum resident set size (KB) = 1025108 + 0: The total amount of wall time = 477.112078 + 0: The maximum resident set size (KB) = 997984 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.125158 - 0: The maximum resident set size (KB) = 1005992 + 0: The total amount of wall time = 334.554774 + 0: The maximum resident set size (KB) = 995444 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.832371 - 0: The maximum resident set size (KB) = 1059392 + 0: The total amount of wall time = 437.592641 + 0: The maximum resident set size (KB) = 1060300 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 428.535341 - 0: The maximum resident set size (KB) = 1083840 + 0: The total amount of wall time = 433.112166 + 0: The maximum resident set size (KB) = 1088804 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.119126 - 0: The maximum resident set size (KB) = 1005584 + 0: The total amount of wall time = 456.385807 + 0: The maximum resident set size (KB) = 1004204 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.612237 - 0: The maximum resident set size (KB) = 1081444 + 0: The total amount of wall time = 404.296441 + 0: The maximum resident set size (KB) = 1080664 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.322845 - 0: The maximum resident set size (KB) = 978748 + 0: The total amount of wall time = 323.009955 + 0: The maximum resident set size (KB) = 946484 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.273328 - 0: The maximum resident set size (KB) = 1020756 + 0: The total amount of wall time = 324.037976 + 0: The maximum resident set size (KB) = 1018552 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_v1beta_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.754157 - 0: The maximum resident set size (KB) = 1066032 + 0: The total amount of wall time = 447.517485 + 0: The maximum resident set size (KB) = 1064788 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_v1nssl_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.321699 - 0: The maximum resident set size (KB) = 699648 + 0: The total amount of wall time = 560.675586 + 0: The maximum resident set size (KB) = 696476 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 507.694336 - 0: The maximum resident set size (KB) = 769440 + 0: The total amount of wall time = 517.699577 + 0: The maximum resident set size (KB) = 776648 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3401,14 +3401,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 148.770499 - 0: The maximum resident set size (KB) = 1040996 + 0: The total amount of wall time = 152.938857 + 0: The maximum resident set size (KB) = 1037648 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.454289 - 0: The maximum resident set size (KB) = 987192 + 0: The total amount of wall time = 149.009075 + 0: The maximum resident set size (KB) = 994600 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3440,14 +3440,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.472468 - 0: The maximum resident set size (KB) = 944120 + 0: The total amount of wall time = 97.525795 + 0: The maximum resident set size (KB) = 948512 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 131.443288 - 0: The maximum resident set size (KB) = 999204 + 0: The total amount of wall time = 138.326315 + 0: The maximum resident set size (KB) = 1004312 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3479,38 +3479,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.853295 - 0: The maximum resident set size (KB) = 1034456 + 0: The total amount of wall time = 159.455890 + 0: The maximum resident set size (KB) = 1039716 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.040095 - 0: The maximum resident set size (KB) = 1032084 + 0: The total amount of wall time = 86.492324 + 0: The maximum resident set size (KB) = 1035228 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 88.380430 - 0: The maximum resident set size (KB) = 1023084 + 0: The total amount of wall time = 94.956291 + 0: The maximum resident set size (KB) = 960944 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_csawmg_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3521,14 +3521,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.855303 - 0: The maximum resident set size (KB) = 725408 + 0: The total amount of wall time = 344.700613 + 0: The maximum resident set size (KB) = 729040 Test 084 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_csawmgt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3539,14 +3539,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 330.036069 - 0: The maximum resident set size (KB) = 730128 + 0: The total amount of wall time = 334.091420 + 0: The maximum resident set size (KB) = 723728 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_ras_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3557,26 +3557,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.855597 - 0: The maximum resident set size (KB) = 725684 + 0: The total amount of wall time = 182.866400 + 0: The maximum resident set size (KB) = 723464 Test 086 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_wam_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.483425 - 0: The maximum resident set size (KB) = 651812 + 0: The total amount of wall time = 112.708118 + 0: The maximum resident set size (KB) = 640484 Test 087 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3623,14 +3623,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.988008 - 0: The maximum resident set size (KB) = 1604424 + 0: The total amount of wall time = 161.764957 + 0: The maximum resident set size (KB) = 1605360 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_control_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3641,56 +3641,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.504265 - 0: The maximum resident set size (KB) = 882956 + 0: The total amount of wall time = 270.241476 + 0: The maximum resident set size (KB) = 880496 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 830.313715 - 0: The maximum resident set size (KB) = 1059196 + 0: The total amount of wall time = 854.742050 + 0: The maximum resident set size (KB) = 1056492 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 468.221009 - 0: The maximum resident set size (KB) = 968108 + 0: The total amount of wall time = 475.063410 + 0: The maximum resident set size (KB) = 971320 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 749.933871 - 0: The maximum resident set size (KB) = 1007460 + 0: The total amount of wall time = 761.803339 + 0: The maximum resident set size (KB) = 1023784 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_CubedSphereGrid_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3717,348 +3717,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.215435 - 0: The maximum resident set size (KB) = 790708 + 0: The total amount of wall time = 147.598267 + 0: The maximum resident set size (KB) = 785696 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.817038 - 0: The maximum resident set size (KB) = 792292 + 0: The total amount of wall time = 149.253940 + 0: The maximum resident set size (KB) = 791604 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_stochy_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.781217 - 0: The maximum resident set size (KB) = 798332 + 0: The total amount of wall time = 166.375109 + 0: The maximum resident set size (KB) = 800584 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.160516 - 0: The maximum resident set size (KB) = 799136 + 0: The total amount of wall time = 153.145155 + 0: The maximum resident set size (KB) = 798128 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_csawmg_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.385444 - 0: The maximum resident set size (KB) = 838316 + 0: The total amount of wall time = 242.224989 + 0: The maximum resident set size (KB) = 841412 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_csawmgt_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.831214 - 0: The maximum resident set size (KB) = 843032 + 0: The total amount of wall time = 226.311105 + 0: The maximum resident set size (KB) = 844604 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_ras_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.256804 - 0: The maximum resident set size (KB) = 810192 + 0: The total amount of wall time = 153.594226 + 0: The maximum resident set size (KB) = 807232 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.502398 - 0: The maximum resident set size (KB) = 854352 + 0: The total amount of wall time = 155.063576 + 0: The maximum resident set size (KB) = 854176 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.588871 - 0: The maximum resident set size (KB) = 1596700 + 0: The total amount of wall time = 170.068973 + 0: The maximum resident set size (KB) = 1610780 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 967.526992 - 0: The maximum resident set size (KB) = 892628 + 0: The total amount of wall time = 989.218292 + 0: The maximum resident set size (KB) = 890584 Test 102 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.535883 - 0: The maximum resident set size (KB) = 1190140 + 0: The total amount of wall time = 278.505713 + 0: The maximum resident set size (KB) = 1180528 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.036606 - 0: The maximum resident set size (KB) = 1167864 + 0: The total amount of wall time = 270.593019 + 0: The maximum resident set size (KB) = 1170284 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_unified_drag_suite_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.250638 - 0: The maximum resident set size (KB) = 1180788 + 0: The total amount of wall time = 286.259757 + 0: The maximum resident set size (KB) = 1181280 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.669308 - 0: The maximum resident set size (KB) = 1262776 + 0: The total amount of wall time = 289.940924 + 0: The maximum resident set size (KB) = 1258376 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.901112 - 0: The maximum resident set size (KB) = 1165536 + 0: The total amount of wall time = 281.193926 + 0: The maximum resident set size (KB) = 1180240 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_unified_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.613548 - 0: The maximum resident set size (KB) = 1183880 + 0: The total amount of wall time = 282.043298 + 0: The maximum resident set size (KB) = 1185220 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.860370 - 0: The maximum resident set size (KB) = 1183364 + 0: The total amount of wall time = 278.941245 + 0: The maximum resident set size (KB) = 1184784 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_progcld_thompson_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.432046 - 0: The maximum resident set size (KB) = 1178396 + 0: The total amount of wall time = 274.215823 + 0: The maximum resident set size (KB) = 1181956 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_noah_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.605005 - 0: The maximum resident set size (KB) = 1184920 + 0: The total amount of wall time = 270.202646 + 0: The maximum resident set size (KB) = 1178036 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.532678 - 0: The maximum resident set size (KB) = 1189424 + 0: The total amount of wall time = 275.867597 + 0: The maximum resident set size (KB) = 1180368 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 454.839979 - 0: The maximum resident set size (KB) = 1186588 + 0: The total amount of wall time = 453.038018 + 0: The maximum resident set size (KB) = 1169804 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_v1beta_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.991508 - 0: The maximum resident set size (KB) = 1180572 + 0: The total amount of wall time = 266.802973 + 0: The maximum resident set size (KB) = 1178496 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_clm_lake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.882065 - 0: The maximum resident set size (KB) = 1179324 + 0: The total amount of wall time = 332.860029 + 0: The maximum resident set size (KB) = 1182296 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_flake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.192141 - 0: The maximum resident set size (KB) = 1187424 + 0: The total amount of wall time = 270.951888 + 0: The maximum resident set size (KB) = 1177320 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_wam_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 271.347637 - 0: The maximum resident set size (KB) = 531692 + 0: The total amount of wall time = 269.845616 + 0: The maximum resident set size (KB) = 528216 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4069,14 +4069,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 217.182941 - 0: The maximum resident set size (KB) = 1089640 + 0: The total amount of wall time = 222.509210 + 0: The maximum resident set size (KB) = 1090840 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4123,14 +4123,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.567282 - 0: The maximum resident set size (KB) = 995376 + 0: The total amount of wall time = 372.208456 + 0: The maximum resident set size (KB) = 1005800 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4177,14 +4177,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.478946 - 0: The maximum resident set size (KB) = 964272 + 0: The total amount of wall time = 193.160024 + 0: The maximum resident set size (KB) = 967412 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4231,14 +4231,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.345129 - 0: The maximum resident set size (KB) = 980244 + 0: The total amount of wall time = 190.435205 + 0: The maximum resident set size (KB) = 966984 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4285,14 +4285,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.883717 - 0: The maximum resident set size (KB) = 1031328 + 0: The total amount of wall time = 349.368527 + 0: The maximum resident set size (KB) = 1024668 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4339,14 +4339,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.398569 - 0: The maximum resident set size (KB) = 947872 + 0: The total amount of wall time = 182.552618 + 0: The maximum resident set size (KB) = 933092 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.640524 - 0: The maximum resident set size (KB) = 899340 + 0: The total amount of wall time = 202.820891 + 0: The maximum resident set size (KB) = 906236 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4439,42 +4439,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.229725 - 0: The maximum resident set size (KB) = 965312 + 0: The total amount of wall time = 278.399942 + 0: The maximum resident set size (KB) = 957600 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.363238 - 0: The maximum resident set size (KB) = 856488 + 0: The total amount of wall time = 101.942932 + 0: The maximum resident set size (KB) = 862360 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.812553 - 0: The maximum resident set size (KB) = 884996 + 0: The total amount of wall time = 104.284321 + 0: The maximum resident set size (KB) = 878916 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.856049 - 0: The maximum resident set size (KB) = 896844 + 0: The total amount of wall time = 115.383102 + 0: The maximum resident set size (KB) = 913048 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4513,38 +4513,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 110.056106 - 0: The maximum resident set size (KB) = 937832 + 0: The total amount of wall time = 113.464512 + 0: The maximum resident set size (KB) = 908168 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.604204 - 0: The maximum resident set size (KB) = 907340 + 0: The total amount of wall time = 68.307423 + 0: The maximum resident set size (KB) = 904428 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.245388 - 0: The maximum resident set size (KB) = 969832 + 0: The total amount of wall time = 75.779827 + 0: The maximum resident set size (KB) = 932248 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_dyn64_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4591,81 +4591,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.389539 - 0: The maximum resident set size (KB) = 970348 + 0: The total amount of wall time = 241.885075 + 0: The maximum resident set size (KB) = 970496 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.252465 - 0: The maximum resident set size (KB) = 1054620 + 0: The total amount of wall time = 275.101804 + 0: The maximum resident set size (KB) = 1068712 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.380148 - 0: The maximum resident set size (KB) = 1067832 + 0: The total amount of wall time = 269.188034 + 0: The maximum resident set size (KB) = 1056176 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.215723 - 0: The maximum resident set size (KB) = 1092456 + 0: The total amount of wall time = 274.787864 + 0: The maximum resident set size (KB) = 1097984 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 223.026961 - 0: The maximum resident set size (KB) = 1068588 + 0: The total amount of wall time = 233.121868 + 0: The maximum resident set size (KB) = 1066060 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 329.119643 - 0: The maximum resident set size (KB) = 1431960 + 0: The total amount of wall time = 363.916937 + 0: The maximum resident set size (KB) = 1423956 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4674,14 +4674,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.423129 - 0: The maximum resident set size (KB) = 1250388 + 0: The total amount of wall time = 386.333129 + 0: The maximum resident set size (KB) = 1218624 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_atm_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,14 +4690,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 745.846478 - 0: The maximum resident set size (KB) = 1269224 + 0: The total amount of wall time = 751.253737 + 0: The maximum resident set size (KB) = 1276688 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 837.506896 - 0: The maximum resident set size (KB) = 1308284 + 0: The total amount of wall time = 847.439638 + 0: The maximum resident set size (KB) = 1297796 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 292.759042 - 0: The maximum resident set size (KB) = 519600 + 0: The total amount of wall time = 301.988292 + 0: The maximum resident set size (KB) = 520364 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 305.068330 - 0: The maximum resident set size (KB) = 493860 + 0: The total amount of wall time = 321.065800 + 0: The maximum resident set size (KB) = 494496 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4782,14 +4782,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 341.890280 - 0: The maximum resident set size (KB) = 522640 + 0: The total amount of wall time = 350.089905 + 0: The maximum resident set size (KB) = 519908 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_global_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4836,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 138.324876 - 0: The maximum resident set size (KB) = 362840 + 0: The total amount of wall time = 141.849273 + 0: The maximum resident set size (KB) = 357192 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4890,14 +4890,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 142.316329 - 0: The maximum resident set size (KB) = 369504 + 0: The total amount of wall time = 151.245146 + 0: The maximum resident set size (KB) = 362396 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 388.405438 - 0: The maximum resident set size (KB) = 461592 + 0: The total amount of wall time = 399.681000 + 0: The maximum resident set size (KB) = 434140 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 411.292276 - 0: The maximum resident set size (KB) = 473180 + 0: The total amount of wall time = 434.367202 + 0: The maximum resident set size (KB) = 468408 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,14 +5084,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 191.555890 - 0: The maximum resident set size (KB) = 528704 + 0: The total amount of wall time = 195.974660 + 0: The maximum resident set size (KB) = 528968 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5113,14 +5113,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 179.654009 - 0: The maximum resident set size (KB) = 531116 + 0: The total amount of wall time = 183.308368 + 0: The maximum resident set size (KB) = 526356 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5142,14 +5142,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 190.016702 - 0: The maximum resident set size (KB) = 522560 + 0: The total amount of wall time = 201.160690 + 0: The maximum resident set size (KB) = 521660 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5158,42 +5158,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 218.674531 - 0: The maximum resident set size (KB) = 578148 + 0: The total amount of wall time = 225.606475 + 0: The maximum resident set size (KB) = 574712 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 55.176688 - 0: The maximum resident set size (KB) = 373664 + 0: The total amount of wall time = 57.243145 + 0: The maximum resident set size (KB) = 377412 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 718.967079 - 0: The maximum resident set size (KB) = 616936 + 0: The total amount of wall time = 710.822765 + 0: The maximum resident set size (KB) = 601040 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,14 +5204,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 477.976357 - 0: The maximum resident set size (KB) = 666840 + 0: The total amount of wall time = 477.836128 + 0: The maximum resident set size (KB) = 668044 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_docn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 344.687102 - 0: The maximum resident set size (KB) = 1261012 + 0: The total amount of wall time = 345.776368 + 0: The maximum resident set size (KB) = 1253624 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_docn_oisst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5234,131 +5234,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 343.234192 - 0: The maximum resident set size (KB) = 1237008 + 0: The total amount of wall time = 349.333893 + 0: The maximum resident set size (KB) = 1237312 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hafs_regional_datm_cdeps_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 948.476677 - 0: The maximum resident set size (KB) = 1205672 + 0: The total amount of wall time = 949.748992 + 0: The maximum resident set size (KB) = 1204032 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_control_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.599681 - 0: The maximum resident set size (KB) = 1114016 + 0: The total amount of wall time = 161.141118 + 0: The maximum resident set size (KB) = 1094144 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.800839 - 0: The maximum resident set size (KB) = 1057640 + 0: The total amount of wall time = 93.249012 + 0: The maximum resident set size (KB) = 1050496 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_control_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.350050 - 0: The maximum resident set size (KB) = 994984 + 0: The total amount of wall time = 149.593913 + 0: The maximum resident set size (KB) = 993460 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_iau_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.157737 - 0: The maximum resident set size (KB) = 990092 + 0: The total amount of wall time = 158.109036 + 0: The maximum resident set size (KB) = 984996 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.429420 - 0: The maximum resident set size (KB) = 980248 + 0: The total amount of wall time = 150.258089 + 0: The maximum resident set size (KB) = 999444 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.722901 - 0: The maximum resident set size (KB) = 1101916 + 0: The total amount of wall time = 155.384515 + 0: The maximum resident set size (KB) = 1093420 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.417897 - 0: The maximum resident set size (KB) = 1101148 + 0: The total amount of wall time = 161.608168 + 0: The maximum resident set size (KB) = 1094432 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.986182 - 0: The maximum resident set size (KB) = 988220 + 0: The total amount of wall time = 149.379921 + 0: The maximum resident set size (KB) = 996172 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5367,14 +5367,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 407.557900 - 0: The maximum resident set size (KB) = 1014820 + 0: The total amount of wall time = 437.930385 + 0: The maximum resident set size (KB) = 1020080 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5383,77 +5383,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 429.539888 - 0: The maximum resident set size (KB) = 996564 + 0: The total amount of wall time = 436.781634 + 0: The maximum resident set size (KB) = 1009900 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.653506 - 0: The maximum resident set size (KB) = 1111404 + 0: The total amount of wall time = 159.226669 + 0: The maximum resident set size (KB) = 1100384 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 227.947250 - 0: The maximum resident set size (KB) = 2333196 + 0: The total amount of wall time = 229.370821 + 0: The maximum resident set size (KB) = 2381584 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_gfs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 243.855404 - 0: The maximum resident set size (KB) = 2395592 + 0: The total amount of wall time = 237.940330 + 0: The maximum resident set size (KB) = 2328892 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.940878 - 0: The maximum resident set size (KB) = 1037940 + 0: The total amount of wall time = 366.237450 + 0: The maximum resident set size (KB) = 1021396 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.245478 - 0: The maximum resident set size (KB) = 1100556 + 0: The total amount of wall time = 160.043177 + 0: The maximum resident set size (KB) = 1102648 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5462,14 +5462,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.236732 - 0: The maximum resident set size (KB) = 249288 + 0: The total amount of wall time = 6.438007 + 0: The maximum resident set size (KB) = 236364 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5478,14 +5478,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.234182 - 0: The maximum resident set size (KB) = 250000 + 0: The total amount of wall time = 10.319237 + 0: The maximum resident set size (KB) = 244476 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_atmlnd_sbs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5570,14 +5570,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 201.483645 - 0: The maximum resident set size (KB) = 1607856 + 0: The total amount of wall time = 207.392828 + 0: The maximum resident set size (KB) = 1615908 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/atmwav_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5620,14 +5620,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.238289 - 0: The maximum resident set size (KB) = 1639316 + 0: The total amount of wall time = 100.556641 + 0: The maximum resident set size (KB) = 1621076 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_atmwav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.286340 - 0: The maximum resident set size (KB) = 656276 + 0: The total amount of wall time = 89.566964 + 0: The maximum resident set size (KB) = 657584 Test 177 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/atmaero_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5722,14 +5722,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.630102 - 0: The maximum resident set size (KB) = 2998420 + 0: The total amount of wall time = 237.629935 + 0: The maximum resident set size (KB) = 2985528 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/atmaero_control_p8_rad_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5773,14 +5773,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.696384 - 0: The maximum resident set size (KB) = 3060028 + 0: The total amount of wall time = 287.906581 + 0: The maximum resident set size (KB) = 3045688 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5824,14 +5824,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.134582 - 0: The maximum resident set size (KB) = 3067700 + 0: The total amount of wall time = 285.243310 + 0: The maximum resident set size (KB) = 3070068 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_atmaq_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5847,14 +5847,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 651.471157 - 0: The maximum resident set size (KB) = 2318128 + 0: The total amount of wall time = 663.347607 + 0: The maximum resident set size (KB) = 2351672 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_atmaq_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5868,14 +5868,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1202.287602 - 0: The maximum resident set size (KB) = 2193080 + 0: The total amount of wall time = 1208.208595 + 0: The maximum resident set size (KB) = 2055820 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_atmaq_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5891,14 +5891,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 566.834853 - 0: The maximum resident set size (KB) = 2331256 + 0: The total amount of wall time = 579.383615 + 0: The maximum resident set size (KB) = 2335444 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_c48_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5937,14 +5937,14 @@ Checking test 184 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 686.417510 -0: The maximum resident set size (KB) = 707968 +0: The total amount of wall time = 688.756679 +0: The maximum resident set size (KB) = 712480 Test 184 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_stochy_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5955,14 +5955,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 675.200449 - 0: The maximum resident set size (KB) = 488000 + 0: The total amount of wall time = 642.035142 + 0: The maximum resident set size (KB) = 485252 Test 185 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_ras_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5973,14 +5973,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 808.178620 - 0: The maximum resident set size (KB) = 493464 + 0: The total amount of wall time = 821.620715 + 0: The maximum resident set size (KB) = 492000 Test 186 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6027,14 +6027,14 @@ Checking test 187 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 912.784423 - 0: The maximum resident set size (KB) = 1239556 + 0: The total amount of wall time = 903.489380 + 0: The maximum resident set size (KB) = 1236312 Test 187 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_flake_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6045,14 +6045,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1556.089195 - 0: The maximum resident set size (KB) = 528672 + 0: The total amount of wall time = 1579.371135 + 0: The maximum resident set size (KB) = 529900 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6099,14 +6099,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1512.653274 - 0: The maximum resident set size (KB) = 836244 + 0: The total amount of wall time = 1466.456654 + 0: The maximum resident set size (KB) = 834820 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6153,14 +6153,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1444.534038 - 0: The maximum resident set size (KB) = 830560 + 0: The total amount of wall time = 1444.019124 + 0: The maximum resident set size (KB) = 829544 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6207,14 +6207,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1369.910212 - 0: The maximum resident set size (KB) = 901444 + 0: The total amount of wall time = 1344.432020 + 0: The maximum resident set size (KB) = 904548 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6253,14 +6253,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 707.328422 - 0: The maximum resident set size (KB) = 551704 + 0: The total amount of wall time = 724.524163 + 0: The maximum resident set size (KB) = 547132 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6307,14 +6307,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.213789 - 0: The maximum resident set size (KB) = 837292 + 0: The total amount of wall time = 1488.352556 + 0: The maximum resident set size (KB) = 833460 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6361,14 +6361,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.749904 - 0: The maximum resident set size (KB) = 834880 + 0: The total amount of wall time = 1439.546878 + 0: The maximum resident set size (KB) = 834536 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_sfcdiff_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6407,14 +6407,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1087.701081 - 0: The maximum resident set size (KB) = 553248 + 0: The total amount of wall time = 1089.584189 + 0: The maximum resident set size (KB) = 554356 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6461,14 +6461,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1422.900511 - 0: The maximum resident set size (KB) = 833104 + 0: The total amount of wall time = 1441.353322 + 0: The maximum resident set size (KB) = 827492 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_gnu Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6515,14 +6515,14 @@ Checking test 197 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1490.458158 - 0: The maximum resident set size (KB) = 850280 + 0: The total amount of wall time = 1480.777250 + 0: The maximum resident set size (KB) = 845092 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6569,14 +6569,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1513.283610 - 0: The maximum resident set size (KB) = 897060 + 0: The total amount of wall time = 1509.969034 + 0: The maximum resident set size (KB) = 898780 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6623,42 +6623,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1426.150937 - 0: The maximum resident set size (KB) = 832608 + 0: The total amount of wall time = 1461.587711 + 0: The maximum resident set size (KB) = 829436 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1054.376493 - 0: The maximum resident set size (KB) = 548776 + 0: The total amount of wall time = 1057.213031 + 0: The maximum resident set size (KB) = 548760 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1066.285841 - 0: The maximum resident set size (KB) = 571508 + 0: The total amount of wall time = 1090.548909 + 0: The maximum resident set size (KB) = 572444 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_v1beta_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6705,14 +6705,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.412427 - 0: The maximum resident set size (KB) = 830928 + 0: The total amount of wall time = 1465.542357 + 0: The maximum resident set size (KB) = 831092 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6728,14 +6728,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 777.709869 - 0: The maximum resident set size (KB) = 663168 + 0: The total amount of wall time = 832.253377 + 0: The maximum resident set size (KB) = 660848 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6751,14 +6751,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 853.551107 - 0: The maximum resident set size (KB) = 617496 + 0: The total amount of wall time = 857.202129 + 0: The maximum resident set size (KB) = 617048 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6767,14 +6767,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1051.511841 - 0: The maximum resident set size (KB) = 658860 + 0: The total amount of wall time = 1079.529656 + 0: The maximum resident set size (KB) = 657104 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6783,14 +6783,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 809.634477 - 0: The maximum resident set size (KB) = 662288 + 0: The total amount of wall time = 839.968030 + 0: The maximum resident set size (KB) = 660688 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6806,274 +6806,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 781.717988 - 0: The maximum resident set size (KB) = 646008 + 0: The total amount of wall time = 797.961469 + 0: The maximum resident set size (KB) = 643520 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 444.790741 - 0: The maximum resident set size (KB) = 657256 + 0: The total amount of wall time = 431.264178 + 0: The maximum resident set size (KB) = 651920 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 492.576977 - 0: The maximum resident set size (KB) = 679992 + 0: The total amount of wall time = 489.695520 + 0: The maximum resident set size (KB) = 679008 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_diag_debug_gnu Checking test 210 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.211778 - 0: The maximum resident set size (KB) = 533800 + 0: The total amount of wall time = 122.759668 + 0: The maximum resident set size (KB) = 529436 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/regional_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_debug_gnu Checking test 211 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 767.275051 - 0: The maximum resident set size (KB) = 593504 + 0: The total amount of wall time = 772.099286 + 0: The maximum resident set size (KB) = 595560 Test 211 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_gnu Checking test 212 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.355242 - 0: The maximum resident set size (KB) = 846336 + 0: The total amount of wall time = 175.978907 + 0: The maximum resident set size (KB) = 844084 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_gnu Checking test 213 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.245110 - 0: The maximum resident set size (KB) = 841100 + 0: The total amount of wall time = 170.503240 + 0: The maximum resident set size (KB) = 841232 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_diag_debug_gnu Checking test 214 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.456250 - 0: The maximum resident set size (KB) = 924592 + 0: The total amount of wall time = 214.734844 + 0: The maximum resident set size (KB) = 925828 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.089273 - 0: The maximum resident set size (KB) = 845636 + 0: The total amount of wall time = 271.358349 + 0: The maximum resident set size (KB) = 842132 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_progcld_thompson_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_progcld_thompson_debug_gnu Checking test 216 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.087835 - 0: The maximum resident set size (KB) = 847400 + 0: The total amount of wall time = 174.068145 + 0: The maximum resident set size (KB) = 845044 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_v1beta_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_debug_gnu Checking test 217 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.760776 - 0: The maximum resident set size (KB) = 840876 + 0: The total amount of wall time = 173.351153 + 0: The maximum resident set size (KB) = 841112 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_ras_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_debug_gnu Checking test 218 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.575719 - 0: The maximum resident set size (KB) = 485032 + 0: The total amount of wall time = 99.377123 + 0: The maximum resident set size (KB) = 484548 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_stochy_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.869687 - 0: The maximum resident set size (KB) = 477112 + 0: The total amount of wall time = 116.758114 + 0: The maximum resident set size (KB) = 476872 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_debug_p8_gnu Checking test 220 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.554089 - 0: The maximum resident set size (KB) = 1234024 + 0: The total amount of wall time = 120.863420 + 0: The maximum resident set size (KB) = 1228920 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 653.144253 - 0: The maximum resident set size (KB) = 683360 + 0: The total amount of wall time = 642.608258 + 0: The maximum resident set size (KB) = 673972 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 770.850710 - 0: The maximum resident set size (KB) = 672204 + 0: The total amount of wall time = 806.554956 + 0: The maximum resident set size (KB) = 671904 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 614.006826 - 0: The maximum resident set size (KB) = 657260 + 0: The total amount of wall time = 595.978593 + 0: The maximum resident set size (KB) = 651008 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_flake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_flake_debug_gnu Checking test 224 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.474951 - 0: The maximum resident set size (KB) = 847816 + 0: The total amount of wall time = 178.508368 + 0: The maximum resident set size (KB) = 844148 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_clm_lake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_clm_lake_debug_gnu Checking test 225 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.505836 - 0: The maximum resident set size (KB) = 845880 + 0: The total amount of wall time = 198.909550 + 0: The maximum resident set size (KB) = 843060 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/control_wam_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 180.245039 - 0: The maximum resident set size (KB) = 201308 + 0: The total amount of wall time = 186.764626 + 0: The maximum resident set size (KB) = 199524 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7120,14 +7120,14 @@ Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1506.710433 - 0: The maximum resident set size (KB) = 696336 + 0: The total amount of wall time = 1490.741139 + 0: The maximum resident set size (KB) = 687920 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7174,14 +7174,14 @@ Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 739.171032 - 0: The maximum resident set size (KB) = 692360 + 0: The total amount of wall time = 759.425094 + 0: The maximum resident set size (KB) = 688868 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7228,14 +7228,14 @@ Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 755.239030 - 0: The maximum resident set size (KB) = 697556 + 0: The total amount of wall time = 765.276284 + 0: The maximum resident set size (KB) = 704860 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7282,14 +7282,14 @@ Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1369.957853 - 0: The maximum resident set size (KB) = 741796 + 0: The total amount of wall time = 1354.681522 + 0: The maximum resident set size (KB) = 740964 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7336,14 +7336,14 @@ Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 807.951356 - 0: The maximum resident set size (KB) = 738652 + 0: The total amount of wall time = 767.773506 + 0: The maximum resident set size (KB) = 732532 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7390,14 +7390,14 @@ Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 730.649646 - 0: The maximum resident set size (KB) = 695148 + 0: The total amount of wall time = 737.366542 + 0: The maximum resident set size (KB) = 693384 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7436,42 +7436,42 @@ Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1063.081827 - 0: The maximum resident set size (KB) = 524248 + 0: The total amount of wall time = 1081.820409 + 0: The maximum resident set size (KB) = 521688 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 370.169846 - 0: The maximum resident set size (KB) = 515492 + 0: The total amount of wall time = 363.366158 + 0: The maximum resident set size (KB) = 513272 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 369.669063 - 0: The maximum resident set size (KB) = 543996 + 0: The total amount of wall time = 381.170886 + 0: The maximum resident set size (KB) = 539644 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7487,14 +7487,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 791.247836 - 0: The maximum resident set size (KB) = 580280 + 0: The total amount of wall time = 816.990491 + 0: The maximum resident set size (KB) = 579700 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7504,44 +7504,44 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 805.264324 - 0: The maximum resident set size (KB) = 581012 + 0: The total amount of wall time = 785.900249 + 0: The maximum resident set size (KB) = 576652 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 418.861543 - 0: The maximum resident set size (KB) = 574356 + 0: The total amount of wall time = 411.177586 + 0: The maximum resident set size (KB) = 574264 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 409.750141 - 0: The maximum resident set size (KB) = 603824 + 0: The total amount of wall time = 421.794431 + 0: The maximum resident set size (KB) = 603240 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_dyn64_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7588,56 +7588,56 @@ Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1070.259920 - 0: The maximum resident set size (KB) = 717512 + 0: The total amount of wall time = 1093.099307 + 0: The maximum resident set size (KB) = 709400 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_dyn32_phy32_gnu Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.409988 - 0: The maximum resident set size (KB) = 699240 + 0: The total amount of wall time = 172.121874 + 0: The maximum resident set size (KB) = 702800 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.827826 - 0: The maximum resident set size (KB) = 705692 + 0: The total amount of wall time = 172.450348 + 0: The maximum resident set size (KB) = 704068 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_debug_gnu Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.786948 - 0: The maximum resident set size (KB) = 720216 + 0: The total amount of wall time = 205.298149 + 0: The maximum resident set size (KB) = 719720 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7702,14 +7702,14 @@ Checking test 244 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1725.893355 - 0: The maximum resident set size (KB) = 1426204 + 0: The total amount of wall time = 1770.079054 + 0: The maximum resident set size (KB) = 1444768 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7771,14 +7771,14 @@ Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1226.356869 - 0: The maximum resident set size (KB) = 1334872 + 0: The total amount of wall time = 1233.897790 + 0: The maximum resident set size (KB) = 1335316 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,14 +7831,14 @@ Checking test 246 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 967.600132 - 0: The maximum resident set size (KB) = 1448172 + 0: The total amount of wall time = 822.870206 + 0: The maximum resident set size (KB) = 1440684 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_control_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7902,14 +7902,14 @@ Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1717.107338 - 0: The maximum resident set size (KB) = 1303960 + 0: The total amount of wall time = 1712.908399 + 0: The maximum resident set size (KB) = 1285916 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7961,25 +7961,25 @@ Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 888.178275 - 0: The maximum resident set size (KB) = 1312960 + 0: The total amount of wall time = 912.698379 + 0: The maximum resident set size (KB) = 1306292 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_282196/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_cfsr_gnu Checking test 249 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 172.838530 - 0: The maximum resident set size (KB) = 674940 + 0: The total amount of wall time = 179.483079 + 0: The maximum resident set size (KB) = 663908 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Sat Aug 5 04:56:59 UTC 2023 -Elapsed time: 02h:00m:02s. Have a nice day! +Sat Aug 12 16:39:25 UTC 2023 +Elapsed time: 20h:21m:34s. Have a nice day! From bfc5915233c95c4319e46de85d7f1f32ae30546c Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 17 Aug 2023 20:04:35 +0000 Subject: [PATCH 08/20] correction to lake_q2m metadata in GFS_diagnostics.F90 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 933f807a05..c04842bf18 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 933f807a05a1ef9570efcaa22c1fbfb94893ebaa +Subproject commit c04842bf18a85b82f3f0b23d15ca2c0625baa03d From 2411807f5cc949b28aecb900eb9a4d7bb2f89c5e Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 17 Aug 2023 21:01:29 +0000 Subject: [PATCH 09/20] hera tests passed again --- tests/logs/RegressionTests_hera.log | 1606 +++++++++++++-------------- 1 file changed, 803 insertions(+), 803 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 8aab9d261e..0f95080edd 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ -Fri Aug 11 20:17:53 UTC 2023 +Wed Aug 16 22:33:56 UTC 2023 Start Regression test -Testing UFSWM Hash: c8b0888c1212b4dbfa235467690ad01ea06ed7de +Testing UFSWM Hash: abc615e456d93b14e4c5757ac1d905effa0a4abb Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,60 +15,60 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 257 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 184 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 189 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 286 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 531 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 550 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 541 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 544 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 577 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 125 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 595 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 186 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 190 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 278 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 566 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 559 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 559 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 588 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 586 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 189 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 118 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 204 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 70 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 591 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafsw_debug_intel elapsed time 195 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 599 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 589 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 597 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 243 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 589 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 241 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 146 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 262 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 944 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 667 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 159 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 272 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile hafsw_faster_intel elapsed time 596 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 596 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 526 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 239 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 592 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 139 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 223 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 253 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 910 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 663 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 154 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 243 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 973 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_gnu elapsed time 275 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 673 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 107 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_intel elapsed time 675 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 118 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.753983 - 0: The maximum resident set size (KB) = 3138772 + 0: The total amount of wall time = 310.504904 + 0: The maximum resident set size (KB) = 3153604 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 220.225987 - 0: The maximum resident set size (KB) = 1691124 + 0: The total amount of wall time = 217.965261 + 0: The maximum resident set size (KB) = 1688420 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.503375 - 0: The maximum resident set size (KB) = 3184060 + 0: The total amount of wall time = 339.668622 + 0: The maximum resident set size (KB) = 3160860 Test 003 cpld_control_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.928364 - 0: The maximum resident set size (KB) = 3059244 + 0: The total amount of wall time = 201.821864 + 0: The maximum resident set size (KB) = 3056116 Test 004 cpld_restart_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.164081 - 0: The maximum resident set size (KB) = 3201492 + 0: The total amount of wall time = 345.095098 + 0: The maximum resident set size (KB) = 3197516 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.950513 - 0: The maximum resident set size (KB) = 3077112 + 0: The total amount of wall time = 214.919772 + 0: The maximum resident set size (KB) = 3068216 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.818285 - 0: The maximum resident set size (KB) = 3525512 + 0: The total amount of wall time = 329.506968 + 0: The maximum resident set size (KB) = 3526084 Test 007 cpld_2threads_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.104257 - 0: The maximum resident set size (KB) = 3176224 + 0: The total amount of wall time = 345.643220 + 0: The maximum resident set size (KB) = 3190048 Test 008 cpld_decomp_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.079585 - 0: The maximum resident set size (KB) = 3039672 + 0: The total amount of wall time = 282.233881 + 0: The maximum resident set size (KB) = 3026908 Test 009 cpld_mpi_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.421324 - 0: The maximum resident set size (KB) = 3179288 + 0: The total amount of wall time = 343.980032 + 0: The maximum resident set size (KB) = 3194136 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 594.802712 - 0: The maximum resident set size (KB) = 3308052 + 0: The total amount of wall time = 590.655105 + 0: The maximum resident set size (KB) = 3413152 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 384.402003 - 0: The maximum resident set size (KB) = 3199340 + 0: The total amount of wall time = 382.520428 + 0: The maximum resident set size (KB) = 3214000 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 684.847502 - 0: The maximum resident set size (KB) = 4036804 + 0: The total amount of wall time = 673.456862 + 0: The maximum resident set size (KB) = 4036316 Test 013 cpld_bmark_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.799884 - 0: The maximum resident set size (KB) = 4014332 + 0: The total amount of wall time = 415.111369 + 0: The maximum resident set size (KB) = 4015088 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 268.865750 - 0: The maximum resident set size (KB) = 1717624 + 0: The total amount of wall time = 266.381265 + 0: The maximum resident set size (KB) = 1721408 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.927771 - 0: The maximum resident set size (KB) = 1757588 + 0: The total amount of wall time = 265.599246 + 0: The maximum resident set size (KB) = 1751848 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 527.953691 - 0: The maximum resident set size (KB) = 3232612 + 0: The total amount of wall time = 525.283685 + 0: The maximum resident set size (KB) = 3189404 Test 017 cpld_debug_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.070519 - 0: The maximum resident set size (KB) = 1738776 + 0: The total amount of wall time = 351.416797 + 0: The maximum resident set size (KB) = 1732788 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.633068 - 0: The maximum resident set size (KB) = 1759652 + 0: The total amount of wall time = 263.730707 + 0: The maximum resident set size (KB) = 1768156 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 589.864839 - 0: The maximum resident set size (KB) = 2800240 + 0: The total amount of wall time = 572.162434 + 0: The maximum resident set size (KB) = 2805112 Test 020 cpld_control_c48_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.675792 - 0: The maximum resident set size (KB) = 3174800 + 0: The total amount of wall time = 324.931829 + 0: The maximum resident set size (KB) = 3183400 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1188.048901 - 0: The maximum resident set size (KB) = 1750172 + 0: The total amount of wall time = 1199.847435 + 0: The maximum resident set size (KB) = 1757004 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 564.329841 - 0: The maximum resident set size (KB) = 1028452 + 0: The total amount of wall time = 560.588131 + 0: The maximum resident set size (KB) = 1031080 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1083.480811 - 0: The maximum resident set size (KB) = 1643216 + 0: The total amount of wall time = 1081.645418 + 0: The maximum resident set size (KB) = 1646212 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1363.729492 - 0: The maximum resident set size (KB) = 1669364 + 0: The total amount of wall time = 1385.712607 + 0: The maximum resident set size (KB) = 1683952 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.603882 - 0: The maximum resident set size (KB) = 686280 + 0: The total amount of wall time = 188.688165 + 0: The maximum resident set size (KB) = 686248 Test 026 control_flake_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,17 +1719,17 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.004327 - 0: The maximum resident set size (KB) = 640524 + 0: The total amount of wall time = 137.548824 + 0: The maximum resident set size (KB) = 633752 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK @@ -1741,14 +1741,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.695440 - 0: The maximum resident set size (KB) = 645116 + 0: The total amount of wall time = 139.696196 + 0: The maximum resident set size (KB) = 644772 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.522227 - 0: The maximum resident set size (KB) = 633636 + 0: The total amount of wall time = 139.304105 + 0: The maximum resident set size (KB) = 604784 Test 029 control_latlon_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.021712 - 0: The maximum resident set size (KB) = 637444 + 0: The total amount of wall time = 141.716673 + 0: The maximum resident set size (KB) = 636392 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 374.914802 -0: The maximum resident set size (KB) = 821960 +0: The total amount of wall time = 371.343181 +0: The maximum resident set size (KB) = 828944 Test 031 control_c48_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 537.632774 - 0: The maximum resident set size (KB) = 784556 + 0: The total amount of wall time = 535.768669 + 0: The maximum resident set size (KB) = 780076 Test 032 control_c192_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 533.514049 - 0: The maximum resident set size (KB) = 1285796 + 0: The total amount of wall time = 531.354909 + 0: The maximum resident set size (KB) = 1283764 Test 033 control_c384_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.636666 - 0: The maximum resident set size (KB) = 1399712 + 0: The total amount of wall time = 479.320961 + 0: The maximum resident set size (KB) = 1399916 Test 034 control_c384gdas_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.489746 - 0: The maximum resident set size (KB) = 645348 + 0: The total amount of wall time = 95.071028 + 0: The maximum resident set size (KB) = 643296 Test 035 control_stochy_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 51.578350 - 0: The maximum resident set size (KB) = 498092 + 0: The total amount of wall time = 49.211085 + 0: The maximum resident set size (KB) = 498628 Test 036 control_stochy_restart_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.400982 - 0: The maximum resident set size (KB) = 639848 + 0: The total amount of wall time = 91.133281 + 0: The maximum resident set size (KB) = 639844 Test 037 control_lndp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.651199 - 0: The maximum resident set size (KB) = 638200 + 0: The total amount of wall time = 142.542563 + 0: The maximum resident set size (KB) = 599928 Test 038 control_iovr4_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.905814 - 0: The maximum resident set size (KB) = 635772 + 0: The total amount of wall time = 140.110142 + 0: The maximum resident set size (KB) = 634156 Test 039 control_iovr5_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.854719 - 0: The maximum resident set size (KB) = 1604332 + 0: The total amount of wall time = 179.500410 + 0: The maximum resident set size (KB) = 1570800 Test 040 control_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.833158 - 0: The maximum resident set size (KB) = 876400 + 0: The total amount of wall time = 95.262005 + 0: The maximum resident set size (KB) = 878472 Test 041 control_restart_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.415062 - 0: The maximum resident set size (KB) = 1613852 + 0: The total amount of wall time = 172.273357 + 0: The maximum resident set size (KB) = 1606668 Test 042 control_qr_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 93.746496 - 0: The maximum resident set size (KB) = 879184 + 0: The total amount of wall time = 93.473810 + 0: The maximum resident set size (KB) = 870564 Test 043 control_restart_qr_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.072398 - 0: The maximum resident set size (KB) = 1585148 + 0: The total amount of wall time = 175.630602 + 0: The maximum resident set size (KB) = 1599040 Test 044 control_decomp_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.950745 - 0: The maximum resident set size (KB) = 1688284 + 0: The total amount of wall time = 160.936590 + 0: The maximum resident set size (KB) = 1689512 Test 045 control_2threads_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 322.825912 - 0: The maximum resident set size (KB) = 1620844 + 0: The total amount of wall time = 317.868184 + 0: The maximum resident set size (KB) = 1601440 Test 046 control_p8_lndp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.499701 - 0: The maximum resident set size (KB) = 1677068 + 0: The total amount of wall time = 230.186245 + 0: The maximum resident set size (KB) = 1657020 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.705214 - 0: The maximum resident set size (KB) = 1590492 + 0: The total amount of wall time = 175.867293 + 0: The maximum resident set size (KB) = 1600652 Test 048 control_p8_mynn_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.810472 - 0: The maximum resident set size (KB) = 1611700 + 0: The total amount of wall time = 196.310661 + 0: The maximum resident set size (KB) = 1612396 Test 049 merra2_thompson_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.558195 - 0: The maximum resident set size (KB) = 881992 + 0: The total amount of wall time = 297.396516 + 0: The maximum resident set size (KB) = 884124 Test 050 regional_control_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.372043 - 0: The maximum resident set size (KB) = 872120 + 0: The total amount of wall time = 152.958325 + 0: The maximum resident set size (KB) = 865716 Test 051 regional_restart_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.929209 - 0: The maximum resident set size (KB) = 880552 + 0: The total amount of wall time = 295.824995 + 0: The maximum resident set size (KB) = 880688 Test 052 regional_control_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.122589 - 0: The maximum resident set size (KB) = 869904 + 0: The total amount of wall time = 150.585278 + 0: The maximum resident set size (KB) = 869924 Test 053 regional_restart_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.302809 - 0: The maximum resident set size (KB) = 875092 + 0: The total amount of wall time = 313.514063 + 0: The maximum resident set size (KB) = 872684 Test 054 regional_decomp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.008743 - 0: The maximum resident set size (KB) = 853996 + 0: The total amount of wall time = 176.603173 + 0: The maximum resident set size (KB) = 853640 Test 055 regional_2threads_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 296.147955 - 0: The maximum resident set size (KB) = 857180 + 0: The total amount of wall time = 291.186529 + 0: The maximum resident set size (KB) = 858224 Test 056 regional_noquilt_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.490988 - 0: The maximum resident set size (KB) = 873400 + 0: The total amount of wall time = 289.458818 + 0: The maximum resident set size (KB) = 876592 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.609734 - 0: The maximum resident set size (KB) = 881244 + 0: The total amount of wall time = 296.134890 + 0: The maximum resident set size (KB) = 884112 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.623401 - 0: The maximum resident set size (KB) = 643792 + 0: The total amount of wall time = 371.495488 + 0: The maximum resident set size (KB) = 646020 Test 059 regional_wofs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.975175 - 0: The maximum resident set size (KB) = 1066640 + 0: The total amount of wall time = 448.284106 + 0: The maximum resident set size (KB) = 1060900 Test 060 rap_control_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 238.540281 - 0: The maximum resident set size (KB) = 1199280 + 0: The total amount of wall time = 230.264656 + 0: The maximum resident set size (KB) = 1193028 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.086717 - 0: The maximum resident set size (KB) = 1009748 + 0: The total amount of wall time = 465.663938 + 0: The maximum resident set size (KB) = 1006316 Test 062 rap_decomp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.504865 - 0: The maximum resident set size (KB) = 1150936 + 0: The total amount of wall time = 419.622655 + 0: The maximum resident set size (KB) = 1144056 Test 063 rap_2threads_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.033263 - 0: The maximum resident set size (KB) = 963944 + 0: The total amount of wall time = 227.427923 + 0: The maximum resident set size (KB) = 972580 Test 064 rap_restart_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.893201 - 0: The maximum resident set size (KB) = 1060788 + 0: The total amount of wall time = 449.247561 + 0: The maximum resident set size (KB) = 1062996 Test 065 rap_sfcdiff_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.112078 - 0: The maximum resident set size (KB) = 997984 + 0: The total amount of wall time = 472.042646 + 0: The maximum resident set size (KB) = 1014700 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.554774 - 0: The maximum resident set size (KB) = 995444 + 0: The total amount of wall time = 333.263633 + 0: The maximum resident set size (KB) = 990136 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 437.592641 - 0: The maximum resident set size (KB) = 1060300 + 0: The total amount of wall time = 432.568242 + 0: The maximum resident set size (KB) = 1058336 Test 068 hrrr_control_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 433.112166 - 0: The maximum resident set size (KB) = 1088804 + 0: The total amount of wall time = 427.449205 + 0: The maximum resident set size (KB) = 1079520 Test 069 hrrr_control_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.385807 - 0: The maximum resident set size (KB) = 1004204 + 0: The total amount of wall time = 451.184241 + 0: The maximum resident set size (KB) = 1005756 Test 070 hrrr_control_decomp_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 404.296441 - 0: The maximum resident set size (KB) = 1080664 + 0: The total amount of wall time = 399.405113 + 0: The maximum resident set size (KB) = 1077856 Test 071 hrrr_control_2threads_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 323.009955 - 0: The maximum resident set size (KB) = 946484 + 0: The total amount of wall time = 322.322893 + 0: The maximum resident set size (KB) = 985528 Test 072 hrrr_control_restart_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.037976 - 0: The maximum resident set size (KB) = 1018552 + 0: The total amount of wall time = 325.950738 + 0: The maximum resident set size (KB) = 1013176 Test 073 hrrr_control_restart_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.517485 - 0: The maximum resident set size (KB) = 1064788 + 0: The total amount of wall time = 443.562072 + 0: The maximum resident set size (KB) = 1060452 Test 074 rrfs_v1beta_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 560.675586 - 0: The maximum resident set size (KB) = 696476 + 0: The total amount of wall time = 525.198955 + 0: The maximum resident set size (KB) = 691792 Test 075 rrfs_v1nssl_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.699577 - 0: The maximum resident set size (KB) = 776648 + 0: The total amount of wall time = 514.360950 + 0: The maximum resident set size (KB) = 758532 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3401,14 +3401,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 152.938857 - 0: The maximum resident set size (KB) = 1037648 + 0: The total amount of wall time = 150.950106 + 0: The maximum resident set size (KB) = 1040208 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 149.009075 - 0: The maximum resident set size (KB) = 994600 + 0: The total amount of wall time = 145.370286 + 0: The maximum resident set size (KB) = 990220 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3440,14 +3440,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.525795 - 0: The maximum resident set size (KB) = 948512 + 0: The total amount of wall time = 93.241707 + 0: The maximum resident set size (KB) = 946128 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 138.326315 - 0: The maximum resident set size (KB) = 1004312 + 0: The total amount of wall time = 134.663265 + 0: The maximum resident set size (KB) = 994968 Test 080 rrfs_conus13km_hrrr_warm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_radar_tten_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3479,38 +3479,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 159.455890 - 0: The maximum resident set size (KB) = 1039716 + 0: The total amount of wall time = 152.469920 + 0: The maximum resident set size (KB) = 1042920 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.492324 - 0: The maximum resident set size (KB) = 1035228 + 0: The total amount of wall time = 85.187727 + 0: The maximum resident set size (KB) = 1031248 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 94.956291 - 0: The maximum resident set size (KB) = 960944 + 0: The total amount of wall time = 91.858422 + 0: The maximum resident set size (KB) = 952548 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3521,14 +3521,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.700613 - 0: The maximum resident set size (KB) = 729040 + 0: The total amount of wall time = 336.355868 + 0: The maximum resident set size (KB) = 725220 Test 084 control_csawmg_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3539,14 +3539,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.091420 - 0: The maximum resident set size (KB) = 723728 + 0: The total amount of wall time = 333.540057 + 0: The maximum resident set size (KB) = 723512 Test 085 control_csawmgt_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3557,26 +3557,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.866400 - 0: The maximum resident set size (KB) = 723464 + 0: The total amount of wall time = 185.960439 + 0: The maximum resident set size (KB) = 727156 Test 086 control_ras_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.708118 - 0: The maximum resident set size (KB) = 640484 + 0: The total amount of wall time = 113.174572 + 0: The maximum resident set size (KB) = 648268 Test 087 control_wam_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3623,14 +3623,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.764957 - 0: The maximum resident set size (KB) = 1605360 + 0: The total amount of wall time = 158.729503 + 0: The maximum resident set size (KB) = 1589740 Test 088 control_p8_faster_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3641,56 +3641,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.241476 - 0: The maximum resident set size (KB) = 880496 + 0: The total amount of wall time = 270.658268 + 0: The maximum resident set size (KB) = 879744 Test 089 regional_control_faster_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 854.742050 - 0: The maximum resident set size (KB) = 1056492 + 0: The total amount of wall time = 859.528526 + 0: The maximum resident set size (KB) = 1049708 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.063410 - 0: The maximum resident set size (KB) = 971320 + 0: The total amount of wall time = 470.168858 + 0: The maximum resident set size (KB) = 976536 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 761.803339 - 0: The maximum resident set size (KB) = 1023784 + 0: The total amount of wall time = 749.621013 + 0: The maximum resident set size (KB) = 1023664 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3717,348 +3717,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.598267 - 0: The maximum resident set size (KB) = 785696 + 0: The total amount of wall time = 151.905871 + 0: The maximum resident set size (KB) = 792468 Test 093 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.253940 - 0: The maximum resident set size (KB) = 791604 + 0: The total amount of wall time = 149.399942 + 0: The maximum resident set size (KB) = 794088 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.375109 - 0: The maximum resident set size (KB) = 800584 + 0: The total amount of wall time = 170.152871 + 0: The maximum resident set size (KB) = 797764 Test 095 control_stochy_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.145155 - 0: The maximum resident set size (KB) = 798128 + 0: The total amount of wall time = 153.138234 + 0: The maximum resident set size (KB) = 799888 Test 096 control_lndp_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.224989 - 0: The maximum resident set size (KB) = 841412 + 0: The total amount of wall time = 230.991594 + 0: The maximum resident set size (KB) = 840292 Test 097 control_csawmg_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.311105 - 0: The maximum resident set size (KB) = 844604 + 0: The total amount of wall time = 223.303387 + 0: The maximum resident set size (KB) = 842972 Test 098 control_csawmgt_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.594226 - 0: The maximum resident set size (KB) = 807232 + 0: The total amount of wall time = 150.759935 + 0: The maximum resident set size (KB) = 816484 Test 099 control_ras_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.063576 - 0: The maximum resident set size (KB) = 854176 + 0: The total amount of wall time = 153.393115 + 0: The maximum resident set size (KB) = 850336 Test 100 control_diag_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.068973 - 0: The maximum resident set size (KB) = 1610780 + 0: The total amount of wall time = 169.230476 + 0: The maximum resident set size (KB) = 1616372 Test 101 control_debug_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 989.218292 - 0: The maximum resident set size (KB) = 890584 + 0: The total amount of wall time = 985.952732 + 0: The maximum resident set size (KB) = 890956 Test 102 regional_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.505713 - 0: The maximum resident set size (KB) = 1180528 + 0: The total amount of wall time = 273.525325 + 0: The maximum resident set size (KB) = 1177804 Test 103 rap_control_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.593019 - 0: The maximum resident set size (KB) = 1170284 + 0: The total amount of wall time = 266.052408 + 0: The maximum resident set size (KB) = 1175028 Test 104 hrrr_control_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.259757 - 0: The maximum resident set size (KB) = 1181280 + 0: The total amount of wall time = 271.056130 + 0: The maximum resident set size (KB) = 1176524 Test 105 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.940924 - 0: The maximum resident set size (KB) = 1258376 + 0: The total amount of wall time = 285.569744 + 0: The maximum resident set size (KB) = 1260180 Test 106 rap_diag_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.193926 - 0: The maximum resident set size (KB) = 1180240 + 0: The total amount of wall time = 278.668632 + 0: The maximum resident set size (KB) = 1180196 Test 107 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.043298 - 0: The maximum resident set size (KB) = 1185220 + 0: The total amount of wall time = 276.965169 + 0: The maximum resident set size (KB) = 1184112 Test 108 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.941245 - 0: The maximum resident set size (KB) = 1184784 + 0: The total amount of wall time = 280.892690 + 0: The maximum resident set size (KB) = 1186628 Test 109 rap_lndp_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.215823 - 0: The maximum resident set size (KB) = 1181956 + 0: The total amount of wall time = 273.645786 + 0: The maximum resident set size (KB) = 1184096 Test 110 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.202646 - 0: The maximum resident set size (KB) = 1178036 + 0: The total amount of wall time = 268.797462 + 0: The maximum resident set size (KB) = 1177468 Test 111 rap_noah_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.867597 - 0: The maximum resident set size (KB) = 1180368 + 0: The total amount of wall time = 278.044341 + 0: The maximum resident set size (KB) = 1177016 Test 112 rap_sfcdiff_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.038018 - 0: The maximum resident set size (KB) = 1169804 + 0: The total amount of wall time = 466.296439 + 0: The maximum resident set size (KB) = 1173948 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.802973 - 0: The maximum resident set size (KB) = 1178496 + 0: The total amount of wall time = 264.976040 + 0: The maximum resident set size (KB) = 1177516 Test 114 rrfs_v1beta_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 332.860029 - 0: The maximum resident set size (KB) = 1182296 + 0: The total amount of wall time = 322.700136 + 0: The maximum resident set size (KB) = 1185560 Test 115 rap_clm_lake_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.951888 - 0: The maximum resident set size (KB) = 1177320 + 0: The total amount of wall time = 276.006011 + 0: The maximum resident set size (KB) = 1182532 Test 116 rap_flake_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 269.845616 - 0: The maximum resident set size (KB) = 528216 + 0: The total amount of wall time = 274.410129 + 0: The maximum resident set size (KB) = 527076 Test 117 control_wam_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4069,14 +4069,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.509210 - 0: The maximum resident set size (KB) = 1090840 + 0: The total amount of wall time = 220.145413 + 0: The maximum resident set size (KB) = 1092180 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4123,14 +4123,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.208456 - 0: The maximum resident set size (KB) = 1005800 + 0: The total amount of wall time = 373.182155 + 0: The maximum resident set size (KB) = 1006512 Test 119 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4177,14 +4177,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.160024 - 0: The maximum resident set size (KB) = 967412 + 0: The total amount of wall time = 194.496530 + 0: The maximum resident set size (KB) = 957244 Test 120 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4231,14 +4231,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.435205 - 0: The maximum resident set size (KB) = 966984 + 0: The total amount of wall time = 192.425850 + 0: The maximum resident set size (KB) = 975080 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4285,14 +4285,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.368527 - 0: The maximum resident set size (KB) = 1024668 + 0: The total amount of wall time = 349.832737 + 0: The maximum resident set size (KB) = 1031472 Test 122 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4339,14 +4339,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.552618 - 0: The maximum resident set size (KB) = 933092 + 0: The total amount of wall time = 178.571268 + 0: The maximum resident set size (KB) = 931736 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.820891 - 0: The maximum resident set size (KB) = 906236 + 0: The total amount of wall time = 202.538719 + 0: The maximum resident set size (KB) = 898080 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4439,42 +4439,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.399942 - 0: The maximum resident set size (KB) = 957600 + 0: The total amount of wall time = 274.111459 + 0: The maximum resident set size (KB) = 955784 Test 125 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.942932 - 0: The maximum resident set size (KB) = 862360 + 0: The total amount of wall time = 100.641050 + 0: The maximum resident set size (KB) = 862552 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.284321 - 0: The maximum resident set size (KB) = 878916 + 0: The total amount of wall time = 101.502442 + 0: The maximum resident set size (KB) = 880196 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 115.383102 - 0: The maximum resident set size (KB) = 913048 + 0: The total amount of wall time = 121.016873 + 0: The maximum resident set size (KB) = 912064 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4513,38 +4513,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 113.464512 - 0: The maximum resident set size (KB) = 908168 + 0: The total amount of wall time = 113.346085 + 0: The maximum resident set size (KB) = 943616 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.307423 - 0: The maximum resident set size (KB) = 904428 + 0: The total amount of wall time = 66.705766 + 0: The maximum resident set size (KB) = 903920 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 75.779827 - 0: The maximum resident set size (KB) = 932248 + 0: The total amount of wall time = 73.987501 + 0: The maximum resident set size (KB) = 967608 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4591,81 +4591,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.885075 - 0: The maximum resident set size (KB) = 970496 + 0: The total amount of wall time = 243.074597 + 0: The maximum resident set size (KB) = 968112 Test 132 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.101804 - 0: The maximum resident set size (KB) = 1068712 + 0: The total amount of wall time = 272.279403 + 0: The maximum resident set size (KB) = 1063116 Test 133 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.188034 - 0: The maximum resident set size (KB) = 1056176 + 0: The total amount of wall time = 266.373457 + 0: The maximum resident set size (KB) = 1077348 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.787864 - 0: The maximum resident set size (KB) = 1097984 + 0: The total amount of wall time = 276.906875 + 0: The maximum resident set size (KB) = 1103052 Test 135 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 233.121868 - 0: The maximum resident set size (KB) = 1066060 + 0: The total amount of wall time = 227.376081 + 0: The maximum resident set size (KB) = 1070468 Test 136 hafs_regional_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 363.916937 - 0: The maximum resident set size (KB) = 1423956 + 0: The total amount of wall time = 336.060599 + 0: The maximum resident set size (KB) = 1442620 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4674,14 +4674,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.333129 - 0: The maximum resident set size (KB) = 1218624 + 0: The total amount of wall time = 383.886791 + 0: The maximum resident set size (KB) = 1245624 Test 138 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,14 +4690,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 751.253737 - 0: The maximum resident set size (KB) = 1276688 + 0: The total amount of wall time = 748.067294 + 0: The maximum resident set size (KB) = 1271716 Test 139 hafs_regional_atm_wav_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 847.439638 - 0: The maximum resident set size (KB) = 1297796 + 0: The total amount of wall time = 849.274200 + 0: The maximum resident set size (KB) = 1284516 Test 140 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 301.988292 - 0: The maximum resident set size (KB) = 520364 + 0: The total amount of wall time = 295.662768 + 0: The maximum resident set size (KB) = 523364 Test 141 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 321.065800 - 0: The maximum resident set size (KB) = 494496 + 0: The total amount of wall time = 314.561864 + 0: The maximum resident set size (KB) = 498380 Test 142 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4782,14 +4782,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 350.089905 - 0: The maximum resident set size (KB) = 519908 + 0: The total amount of wall time = 344.228261 + 0: The maximum resident set size (KB) = 524700 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4836,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 141.849273 - 0: The maximum resident set size (KB) = 357192 + 0: The total amount of wall time = 140.446172 + 0: The maximum resident set size (KB) = 357092 Test 144 hafs_global_1nest_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4890,14 +4890,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 151.245146 - 0: The maximum resident set size (KB) = 362396 + 0: The total amount of wall time = 146.659498 + 0: The maximum resident set size (KB) = 365756 Test 145 hafs_global_1nest_atm_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 399.681000 - 0: The maximum resident set size (KB) = 434140 + 0: The total amount of wall time = 391.862436 + 0: The maximum resident set size (KB) = 462436 Test 146 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_multiple_4nests_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 434.367202 - 0: The maximum resident set size (KB) = 468408 + 0: The total amount of wall time = 449.618617 + 0: The maximum resident set size (KB) = 477612 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,14 +5084,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 195.974660 - 0: The maximum resident set size (KB) = 528968 + 0: The total amount of wall time = 197.107226 + 0: The maximum resident set size (KB) = 531172 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5113,14 +5113,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 183.308368 - 0: The maximum resident set size (KB) = 526356 + 0: The total amount of wall time = 182.576662 + 0: The maximum resident set size (KB) = 533212 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5142,14 +5142,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 201.160690 - 0: The maximum resident set size (KB) = 521660 + 0: The total amount of wall time = 199.384920 + 0: The maximum resident set size (KB) = 519372 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5158,42 +5158,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 225.606475 - 0: The maximum resident set size (KB) = 574712 + 0: The total amount of wall time = 220.024088 + 0: The maximum resident set size (KB) = 576884 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.243145 - 0: The maximum resident set size (KB) = 377412 + 0: The total amount of wall time = 54.692262 + 0: The maximum resident set size (KB) = 376556 Test 152 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 710.822765 - 0: The maximum resident set size (KB) = 601040 + 0: The total amount of wall time = 716.096558 + 0: The maximum resident set size (KB) = 589932 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,14 +5204,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 477.836128 - 0: The maximum resident set size (KB) = 668044 + 0: The total amount of wall time = 477.850995 + 0: The maximum resident set size (KB) = 676612 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 345.776368 - 0: The maximum resident set size (KB) = 1253624 + 0: The total amount of wall time = 350.517121 + 0: The maximum resident set size (KB) = 1246992 Test 155 hafs_regional_docn_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5234,131 +5234,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 349.333893 - 0: The maximum resident set size (KB) = 1237312 + 0: The total amount of wall time = 351.439517 + 0: The maximum resident set size (KB) = 1236584 Test 156 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 949.748992 - 0: The maximum resident set size (KB) = 1204032 + 0: The total amount of wall time = 961.661826 + 0: The maximum resident set size (KB) = 1207872 Test 157 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.141118 - 0: The maximum resident set size (KB) = 1094144 + 0: The total amount of wall time = 160.557457 + 0: The maximum resident set size (KB) = 1087780 Test 158 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 93.249012 - 0: The maximum resident set size (KB) = 1050496 + 0: The total amount of wall time = 96.743809 + 0: The maximum resident set size (KB) = 1047060 Test 159 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.593913 - 0: The maximum resident set size (KB) = 993460 + 0: The total amount of wall time = 159.333184 + 0: The maximum resident set size (KB) = 971608 Test 160 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.109036 - 0: The maximum resident set size (KB) = 984996 + 0: The total amount of wall time = 157.504590 + 0: The maximum resident set size (KB) = 984612 Test 161 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.258089 - 0: The maximum resident set size (KB) = 999444 + 0: The total amount of wall time = 159.175535 + 0: The maximum resident set size (KB) = 987788 Test 162 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.384515 - 0: The maximum resident set size (KB) = 1093420 + 0: The total amount of wall time = 166.418191 + 0: The maximum resident set size (KB) = 1096336 Test 163 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.608168 - 0: The maximum resident set size (KB) = 1094432 + 0: The total amount of wall time = 181.014810 + 0: The maximum resident set size (KB) = 1091296 Test 164 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.379921 - 0: The maximum resident set size (KB) = 996172 + 0: The total amount of wall time = 155.639460 + 0: The maximum resident set size (KB) = 980396 Test 165 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5367,14 +5367,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 437.930385 - 0: The maximum resident set size (KB) = 1020080 + 0: The total amount of wall time = 402.114321 + 0: The maximum resident set size (KB) = 1015736 Test 166 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5383,77 +5383,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.781634 - 0: The maximum resident set size (KB) = 1009900 + 0: The total amount of wall time = 417.494202 + 0: The maximum resident set size (KB) = 995568 Test 167 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.226669 - 0: The maximum resident set size (KB) = 1100384 + 0: The total amount of wall time = 168.343444 + 0: The maximum resident set size (KB) = 1086860 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 229.370821 - 0: The maximum resident set size (KB) = 2381584 + 0: The total amount of wall time = 246.643221 + 0: The maximum resident set size (KB) = 2324880 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 237.940330 - 0: The maximum resident set size (KB) = 2328892 + 0: The total amount of wall time = 240.950653 + 0: The maximum resident set size (KB) = 2438852 Test 170 datm_cdeps_gfs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 366.237450 - 0: The maximum resident set size (KB) = 1021396 + 0: The total amount of wall time = 380.151841 + 0: The maximum resident set size (KB) = 1016484 Test 171 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.043177 - 0: The maximum resident set size (KB) = 1102648 + 0: The total amount of wall time = 159.532200 + 0: The maximum resident set size (KB) = 1095204 Test 172 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5462,14 +5462,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.438007 - 0: The maximum resident set size (KB) = 236364 + 0: The total amount of wall time = 6.300622 + 0: The maximum resident set size (KB) = 251892 Test 173 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_lnd_gswp3_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5478,14 +5478,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.319237 - 0: The maximum resident set size (KB) = 244476 + 0: The total amount of wall time = 10.243792 + 0: The maximum resident set size (KB) = 243876 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5570,14 +5570,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 207.392828 - 0: The maximum resident set size (KB) = 1615908 + 0: The total amount of wall time = 214.738112 + 0: The maximum resident set size (KB) = 1589520 Test 175 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5620,14 +5620,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 100.556641 - 0: The maximum resident set size (KB) = 1621076 + 0: The total amount of wall time = 101.911832 + 0: The maximum resident set size (KB) = 1641416 Test 176 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.566964 - 0: The maximum resident set size (KB) = 657584 + 0: The total amount of wall time = 89.955038 + 0: The maximum resident set size (KB) = 658356 Test 177 control_atmwav_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5722,14 +5722,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.629935 - 0: The maximum resident set size (KB) = 2985528 + 0: The total amount of wall time = 228.579849 + 0: The maximum resident set size (KB) = 2997348 Test 178 atmaero_control_p8_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5773,14 +5773,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.906581 - 0: The maximum resident set size (KB) = 3045688 + 0: The total amount of wall time = 281.620695 + 0: The maximum resident set size (KB) = 3072084 Test 179 atmaero_control_p8_rad_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5824,14 +5824,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.243310 - 0: The maximum resident set size (KB) = 3070068 + 0: The total amount of wall time = 289.560785 + 0: The maximum resident set size (KB) = 3079180 Test 180 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5847,14 +5847,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 663.347607 - 0: The maximum resident set size (KB) = 2351672 + 0: The total amount of wall time = 647.470099 + 0: The maximum resident set size (KB) = 2358116 Test 181 regional_atmaq_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5868,14 +5868,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1208.208595 - 0: The maximum resident set size (KB) = 2055820 + 0: The total amount of wall time = 1246.250506 + 0: The maximum resident set size (KB) = 2193152 Test 182 regional_atmaq_debug_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5891,14 +5891,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 579.383615 - 0: The maximum resident set size (KB) = 2335444 + 0: The total amount of wall time = 561.083868 + 0: The maximum resident set size (KB) = 2384120 Test 183 regional_atmaq_faster_intel PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5937,14 +5937,14 @@ Checking test 184 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.756679 -0: The maximum resident set size (KB) = 712480 +0: The total amount of wall time = 686.677565 +0: The maximum resident set size (KB) = 704324 Test 184 control_c48_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5955,14 +5955,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 642.035142 - 0: The maximum resident set size (KB) = 485252 + 0: The total amount of wall time = 644.950398 + 0: The maximum resident set size (KB) = 479712 Test 185 control_stochy_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5973,14 +5973,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 821.620715 - 0: The maximum resident set size (KB) = 492000 + 0: The total amount of wall time = 833.651602 + 0: The maximum resident set size (KB) = 492300 Test 186 control_ras_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6027,14 +6027,14 @@ Checking test 187 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 903.489380 - 0: The maximum resident set size (KB) = 1236312 + 0: The total amount of wall time = 912.207938 + 0: The maximum resident set size (KB) = 1238388 Test 187 control_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6045,14 +6045,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1579.371135 - 0: The maximum resident set size (KB) = 529900 + 0: The total amount of wall time = 1517.831758 + 0: The maximum resident set size (KB) = 534404 Test 188 control_flake_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6099,14 +6099,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1466.456654 - 0: The maximum resident set size (KB) = 834820 + 0: The total amount of wall time = 1445.660285 + 0: The maximum resident set size (KB) = 832068 Test 189 rap_control_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6153,14 +6153,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1444.019124 - 0: The maximum resident set size (KB) = 829544 + 0: The total amount of wall time = 1464.424614 + 0: The maximum resident set size (KB) = 833912 Test 190 rap_decomp_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6207,14 +6207,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1344.432020 - 0: The maximum resident set size (KB) = 904548 + 0: The total amount of wall time = 1301.698883 + 0: The maximum resident set size (KB) = 900452 Test 191 rap_2threads_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6253,14 +6253,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 724.524163 - 0: The maximum resident set size (KB) = 547132 + 0: The total amount of wall time = 707.084914 + 0: The maximum resident set size (KB) = 536132 Test 192 rap_restart_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6307,14 +6307,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1488.352556 - 0: The maximum resident set size (KB) = 833460 + 0: The total amount of wall time = 1492.288101 + 0: The maximum resident set size (KB) = 830608 Test 193 rap_sfcdiff_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6361,14 +6361,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.546878 - 0: The maximum resident set size (KB) = 834536 + 0: The total amount of wall time = 1457.793513 + 0: The maximum resident set size (KB) = 832980 Test 194 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6407,14 +6407,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1089.584189 - 0: The maximum resident set size (KB) = 554356 + 0: The total amount of wall time = 1077.667353 + 0: The maximum resident set size (KB) = 550952 Test 195 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6461,14 +6461,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1441.353322 - 0: The maximum resident set size (KB) = 827492 + 0: The total amount of wall time = 1442.526126 + 0: The maximum resident set size (KB) = 830152 Test 196 hrrr_control_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_qr_gnu Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6515,14 +6515,14 @@ Checking test 197 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1480.777250 - 0: The maximum resident set size (KB) = 845092 + 0: The total amount of wall time = 1480.204683 + 0: The maximum resident set size (KB) = 842356 Test 197 hrrr_control_qr_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6569,14 +6569,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1509.969034 - 0: The maximum resident set size (KB) = 898780 + 0: The total amount of wall time = 1506.180409 + 0: The maximum resident set size (KB) = 899056 Test 198 hrrr_control_2threads_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6623,42 +6623,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.587711 - 0: The maximum resident set size (KB) = 829436 + 0: The total amount of wall time = 1434.399398 + 0: The maximum resident set size (KB) = 829296 Test 199 hrrr_control_decomp_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1057.213031 - 0: The maximum resident set size (KB) = 548760 + 0: The total amount of wall time = 1041.893018 + 0: The maximum resident set size (KB) = 546072 Test 200 hrrr_control_restart_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1090.548909 - 0: The maximum resident set size (KB) = 572444 + 0: The total amount of wall time = 1071.044920 + 0: The maximum resident set size (KB) = 569732 Test 201 hrrr_control_restart_qr_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6705,14 +6705,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.542357 - 0: The maximum resident set size (KB) = 831092 + 0: The total amount of wall time = 1475.507033 + 0: The maximum resident set size (KB) = 826524 Test 202 rrfs_v1beta_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6728,14 +6728,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 832.253377 - 0: The maximum resident set size (KB) = 660848 + 0: The total amount of wall time = 839.641177 + 0: The maximum resident set size (KB) = 658244 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6751,14 +6751,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 857.202129 - 0: The maximum resident set size (KB) = 617048 + 0: The total amount of wall time = 866.834485 + 0: The maximum resident set size (KB) = 614748 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6767,14 +6767,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1079.529656 - 0: The maximum resident set size (KB) = 657104 + 0: The total amount of wall time = 1083.909550 + 0: The maximum resident set size (KB) = 650792 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_radar_tten_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6783,14 +6783,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 839.968030 - 0: The maximum resident set size (KB) = 660688 + 0: The total amount of wall time = 781.801624 + 0: The maximum resident set size (KB) = 661852 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6806,274 +6806,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 797.961469 - 0: The maximum resident set size (KB) = 643520 + 0: The total amount of wall time = 768.806904 + 0: The maximum resident set size (KB) = 642052 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 431.264178 - 0: The maximum resident set size (KB) = 651920 + 0: The total amount of wall time = 439.544694 + 0: The maximum resident set size (KB) = 654352 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 489.695520 - 0: The maximum resident set size (KB) = 679008 + 0: The total amount of wall time = 481.340360 + 0: The maximum resident set size (KB) = 676092 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_diag_debug_gnu Checking test 210 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.759668 - 0: The maximum resident set size (KB) = 529436 + 0: The total amount of wall time = 122.385466 + 0: The maximum resident set size (KB) = 536132 Test 210 control_diag_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/regional_debug_gnu Checking test 211 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 772.099286 - 0: The maximum resident set size (KB) = 595560 + 0: The total amount of wall time = 731.175095 + 0: The maximum resident set size (KB) = 601504 Test 211 regional_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_debug_gnu Checking test 212 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.978907 - 0: The maximum resident set size (KB) = 844084 + 0: The total amount of wall time = 175.089678 + 0: The maximum resident set size (KB) = 850692 Test 212 rap_control_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_debug_gnu Checking test 213 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.503240 - 0: The maximum resident set size (KB) = 841232 + 0: The total amount of wall time = 168.173830 + 0: The maximum resident set size (KB) = 843636 Test 213 hrrr_control_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_diag_debug_gnu Checking test 214 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.734844 - 0: The maximum resident set size (KB) = 925828 + 0: The total amount of wall time = 213.335449 + 0: The maximum resident set size (KB) = 929092 Test 214 rap_diag_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.358349 - 0: The maximum resident set size (KB) = 842132 + 0: The total amount of wall time = 278.882322 + 0: The maximum resident set size (KB) = 842412 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_progcld_thompson_debug_gnu Checking test 216 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.068145 - 0: The maximum resident set size (KB) = 845044 + 0: The total amount of wall time = 182.501957 + 0: The maximum resident set size (KB) = 845688 Test 216 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_v1beta_debug_gnu Checking test 217 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.351153 - 0: The maximum resident set size (KB) = 841112 + 0: The total amount of wall time = 177.705586 + 0: The maximum resident set size (KB) = 841492 Test 217 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_ras_debug_gnu Checking test 218 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.377123 - 0: The maximum resident set size (KB) = 484548 + 0: The total amount of wall time = 100.491980 + 0: The maximum resident set size (KB) = 486956 Test 218 control_ras_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.758114 - 0: The maximum resident set size (KB) = 476872 + 0: The total amount of wall time = 117.225005 + 0: The maximum resident set size (KB) = 479832 Test 219 control_stochy_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_debug_p8_gnu Checking test 220 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.863420 - 0: The maximum resident set size (KB) = 1228920 + 0: The total amount of wall time = 118.193870 + 0: The maximum resident set size (KB) = 1231196 Test 220 control_debug_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 642.608258 - 0: The maximum resident set size (KB) = 673972 + 0: The total amount of wall time = 603.571961 + 0: The maximum resident set size (KB) = 677532 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 806.554956 - 0: The maximum resident set size (KB) = 671904 + 0: The total amount of wall time = 805.348214 + 0: The maximum resident set size (KB) = 671784 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 595.978593 - 0: The maximum resident set size (KB) = 651008 + 0: The total amount of wall time = 578.891279 + 0: The maximum resident set size (KB) = 661228 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_flake_debug_gnu Checking test 224 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.508368 - 0: The maximum resident set size (KB) = 844148 + 0: The total amount of wall time = 179.909056 + 0: The maximum resident set size (KB) = 844896 Test 224 rap_flake_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_clm_lake_debug_gnu Checking test 225 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.909550 - 0: The maximum resident set size (KB) = 843060 + 0: The total amount of wall time = 197.175087 + 0: The maximum resident set size (KB) = 847308 Test 225 rap_clm_lake_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 186.764626 - 0: The maximum resident set size (KB) = 199524 + 0: The total amount of wall time = 183.865895 + 0: The maximum resident set size (KB) = 199008 Test 226 control_wam_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7120,14 +7120,14 @@ Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1490.741139 - 0: The maximum resident set size (KB) = 687920 + 0: The total amount of wall time = 1467.068607 + 0: The maximum resident set size (KB) = 694692 Test 227 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7174,14 +7174,14 @@ Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 759.425094 - 0: The maximum resident set size (KB) = 688868 + 0: The total amount of wall time = 720.727778 + 0: The maximum resident set size (KB) = 685884 Test 228 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7228,14 +7228,14 @@ Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 765.276284 - 0: The maximum resident set size (KB) = 704860 + 0: The total amount of wall time = 756.889076 + 0: The maximum resident set size (KB) = 702012 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7282,14 +7282,14 @@ Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1354.681522 - 0: The maximum resident set size (KB) = 740964 + 0: The total amount of wall time = 1358.873421 + 0: The maximum resident set size (KB) = 732380 Test 230 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7336,14 +7336,14 @@ Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 767.773506 - 0: The maximum resident set size (KB) = 732532 + 0: The total amount of wall time = 794.873714 + 0: The maximum resident set size (KB) = 738104 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7390,14 +7390,14 @@ Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 737.366542 - 0: The maximum resident set size (KB) = 693384 + 0: The total amount of wall time = 707.362645 + 0: The maximum resident set size (KB) = 689208 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7436,42 +7436,42 @@ Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1081.820409 - 0: The maximum resident set size (KB) = 521688 + 0: The total amount of wall time = 1087.813722 + 0: The maximum resident set size (KB) = 511820 Test 233 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 363.366158 - 0: The maximum resident set size (KB) = 513272 + 0: The total amount of wall time = 382.788962 + 0: The maximum resident set size (KB) = 510108 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_restart_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 381.170886 - 0: The maximum resident set size (KB) = 539644 + 0: The total amount of wall time = 369.078352 + 0: The maximum resident set size (KB) = 537220 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7487,14 +7487,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 816.990491 - 0: The maximum resident set size (KB) = 579700 + 0: The total amount of wall time = 769.870775 + 0: The maximum resident set size (KB) = 579716 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7504,44 +7504,44 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 785.900249 - 0: The maximum resident set size (KB) = 576652 + 0: The total amount of wall time = 787.168733 + 0: The maximum resident set size (KB) = 580580 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 411.177586 - 0: The maximum resident set size (KB) = 574264 + 0: The total amount of wall time = 395.161756 + 0: The maximum resident set size (KB) = 575636 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 421.794431 - 0: The maximum resident set size (KB) = 603240 + 0: The total amount of wall time = 414.493177 + 0: The maximum resident set size (KB) = 600788 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7588,56 +7588,56 @@ Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1093.099307 - 0: The maximum resident set size (KB) = 709400 + 0: The total amount of wall time = 1087.546457 + 0: The maximum resident set size (KB) = 712480 Test 240 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_debug_dyn32_phy32_gnu Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.121874 - 0: The maximum resident set size (KB) = 702800 + 0: The total amount of wall time = 168.974346 + 0: The maximum resident set size (KB) = 702636 Test 241 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.450348 - 0: The maximum resident set size (KB) = 704068 + 0: The total amount of wall time = 170.709866 + 0: The maximum resident set size (KB) = 699748 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/rap_control_dyn64_phy32_debug_gnu Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.298149 - 0: The maximum resident set size (KB) = 719720 + 0: The total amount of wall time = 206.358085 + 0: The maximum resident set size (KB) = 726568 Test 243 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7702,14 +7702,14 @@ Checking test 244 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1770.079054 - 0: The maximum resident set size (KB) = 1444768 + 0: The total amount of wall time = 2195.056613 + 0: The maximum resident set size (KB) = 1444816 Test 244 cpld_control_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7771,14 +7771,14 @@ Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1233.897790 - 0: The maximum resident set size (KB) = 1335316 + 0: The total amount of wall time = 1219.088223 + 0: The maximum resident set size (KB) = 1336916 Test 245 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,14 +7831,14 @@ Checking test 246 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 822.870206 - 0: The maximum resident set size (KB) = 1440684 + 0: The total amount of wall time = 794.048903 + 0: The maximum resident set size (KB) = 1446956 Test 246 cpld_debug_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7902,14 +7902,14 @@ Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1712.908399 - 0: The maximum resident set size (KB) = 1285916 + 0: The total amount of wall time = 1712.866623 + 0: The maximum resident set size (KB) = 1306136 Test 247 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7961,25 +7961,25 @@ Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 912.698379 - 0: The maximum resident set size (KB) = 1306292 + 0: The total amount of wall time = 896.079905 + 0: The maximum resident set size (KB) = 1303956 Test 248 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_302166/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_46966/datm_cdeps_control_cfsr_gnu Checking test 249 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 179.483079 - 0: The maximum resident set size (KB) = 663908 + 0: The total amount of wall time = 175.337421 + 0: The maximum resident set size (KB) = 665056 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Sat Aug 12 16:39:25 UTC 2023 -Elapsed time: 20h:21m:34s. Have a nice day! +Thu Aug 17 01:08:28 UTC 2023 +Elapsed time: 02h:34m:34s. Have a nice day! From 2ce3eb0ee7ffaea71ed46e60c137d9e561e75e8a Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 18 Aug 2023 00:13:59 +0000 Subject: [PATCH 10/20] hera tests passed again --- tests/logs/RegressionTests_hera.log | 2106 +++++++++++++-------------- 1 file changed, 1053 insertions(+), 1053 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 874a9af089..ca573266f3 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Wed Aug 16 04:10:18 UTC 2023 +Thu Aug 17 22:15:06 UTC 2023 Start Regression test -Testing UFSWM Hash: 7166aaa076a2d0a1c11a1c53a744f2f3a951706d +Testing UFSWM Hash: 22337aa69b52d16dba5d096697b1c48a872fc233 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1403-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + d06920ba4c3017d83e9ab507c8eea930848c59dc ../FV3 (heads/tanya-fix-20230724) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) + 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 224 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 231 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 183 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_debug_dyn32_intel elapsed time 235 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 177 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 180 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile atm_dyn64_phy32_debug_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 268 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn64_phy32_gnu elapsed time 278 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 524 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atmaq_debug_intel elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 574 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 523 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 551 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 579 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 554 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 123 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 193 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaq_faster_intel elapsed time 552 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 520 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 542 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 553 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 593 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 183 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 118 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 201 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 578 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 570 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 196 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 591 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 240 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 224 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 623 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 133 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 255 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 881 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 654 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_aoflux_intel elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 241 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 220 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 640 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 137 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 254 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 921 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 663 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_debug_gnu elapsed time 146 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 236 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 653 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 146 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_p8_mixedmode_intel +Compile s2swa_debug_intel elapsed time 245 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 965 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 272 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 650 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 108 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.741093 - 0: The maximum resident set size (KB) = 3141232 + 0: The total amount of wall time = 320.509653 + 0: The maximum resident set size (KB) = 3084200 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_gfsv17_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 220.553245 - 0: The maximum resident set size (KB) = 1691868 + 0: The total amount of wall time = 218.047092 + 0: The maximum resident set size (KB) = 1697068 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.936479 - 0: The maximum resident set size (KB) = 3178468 + 0: The total amount of wall time = 377.098171 + 0: The maximum resident set size (KB) = 3182276 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.196997 - 0: The maximum resident set size (KB) = 3058668 + 0: The total amount of wall time = 197.145064 + 0: The maximum resident set size (KB) = 3063596 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.734419 - 0: The maximum resident set size (KB) = 3187496 + 0: The total amount of wall time = 340.203388 + 0: The maximum resident set size (KB) = 3196640 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.365600 - 0: The maximum resident set size (KB) = 3066832 + 0: The total amount of wall time = 201.334780 + 0: The maximum resident set size (KB) = 3029648 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.377863 - 0: The maximum resident set size (KB) = 3525596 + 0: The total amount of wall time = 325.246726 + 0: The maximum resident set size (KB) = 3521248 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.163880 - 0: The maximum resident set size (KB) = 3165472 + 0: The total amount of wall time = 351.006806 + 0: The maximum resident set size (KB) = 3170868 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_mpi_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 288.808911 - 0: The maximum resident set size (KB) = 3029656 + 0: The total amount of wall time = 288.649441 + 0: The maximum resident set size (KB) = 3025240 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_ciceC_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.969983 - 0: The maximum resident set size (KB) = 3174692 + 0: The total amount of wall time = 345.548258 + 0: The maximum resident set size (KB) = 3182448 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 579.043075 - 0: The maximum resident set size (KB) = 3398932 + 0: The total amount of wall time = 583.304691 + 0: The maximum resident set size (KB) = 3402072 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_restart_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 377.870895 - 0: The maximum resident set size (KB) = 3204476 + 0: The total amount of wall time = 380.513733 + 0: The maximum resident set size (KB) = 3199340 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 671.902221 - 0: The maximum resident set size (KB) = 4083768 + 0: The total amount of wall time = 729.330831 + 0: The maximum resident set size (KB) = 4036404 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_restart_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.542034 - 0: The maximum resident set size (KB) = 4021172 + 0: The total amount of wall time = 414.654917 + 0: The maximum resident set size (KB) = 4009276 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.418397 - 0: The maximum resident set size (KB) = 1718308 + 0: The total amount of wall time = 265.350072 + 0: The maximum resident set size (KB) = 1716956 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.454972 - 0: The maximum resident set size (KB) = 1769176 + 0: The total amount of wall time = 261.429953 + 0: The maximum resident set size (KB) = 1724720 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 509.676571 - 0: The maximum resident set size (KB) = 3228032 + 0: The total amount of wall time = 518.030363 + 0: The maximum resident set size (KB) = 3221956 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_debug_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.606686 - 0: The maximum resident set size (KB) = 1737744 + 0: The total amount of wall time = 352.829541 + 0: The maximum resident set size (KB) = 1736812 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.293927 - 0: The maximum resident set size (KB) = 1778444 + 0: The total amount of wall time = 265.908030 + 0: The maximum resident set size (KB) = 1758988 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 584.102013 - 0: The maximum resident set size (KB) = 2803096 + 0: The total amount of wall time = 580.067534 + 0: The maximum resident set size (KB) = 2808424 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.269151 - 0: The maximum resident set size (KB) = 3189656 + 0: The total amount of wall time = 330.185563 + 0: The maximum resident set size (KB) = 3181592 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1194.866243 - 0: The maximum resident set size (KB) = 1739232 + 0: The total amount of wall time = 1194.878201 + 0: The maximum resident set size (KB) = 1751816 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_restart_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 562.785753 - 0: The maximum resident set size (KB) = 1040012 + 0: The total amount of wall time = 560.472450 + 0: The maximum resident set size (KB) = 1035408 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1083.211365 - 0: The maximum resident set size (KB) = 1652104 + 0: The total amount of wall time = 1085.843720 + 0: The maximum resident set size (KB) = 1651072 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_debug_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1372.532096 - 0: The maximum resident set size (KB) = 1697684 + 0: The total amount of wall time = 1353.831216 + 0: The maximum resident set size (KB) = 1703812 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_flake_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.749947 - 0: The maximum resident set size (KB) = 688056 + 0: The total amount of wall time = 188.205894 + 0: The maximum resident set size (KB) = 687484 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_CubedSphereGrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,36 +1719,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.328204 - 0: The maximum resident set size (KB) = 634716 + 0: The total amount of wall time = 131.318705 + 0: The maximum resident set size (KB) = 640532 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.809841 - 0: The maximum resident set size (KB) = 639408 + 0: The total amount of wall time = 139.112588 + 0: The maximum resident set size (KB) = 642984 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_latlon_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,16 +1759,16 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.568900 - 0: The maximum resident set size (KB) = 633936 + 0: The total amount of wall time = 133.941269 + 0: The maximum resident set size (KB) = 635928 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.062908 - 0: The maximum resident set size (KB) = 636460 + 0: The total amount of wall time = 136.513861 + 0: The maximum resident set size (KB) = 635128 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 363.951003 -0: The maximum resident set size (KB) = 829232 +0: The total amount of wall time = 372.402018 +0: The maximum resident set size (KB) = 826300 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_c192_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.900146 - 0: The maximum resident set size (KB) = 779988 + 0: The total amount of wall time = 532.036883 + 0: The maximum resident set size (KB) = 749268 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_c384_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.998731 - 0: The maximum resident set size (KB) = 1285284 + 0: The total amount of wall time = 527.236960 + 0: The maximum resident set size (KB) = 1284776 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_c384gdas_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.819972 - 0: The maximum resident set size (KB) = 1405708 + 0: The total amount of wall time = 462.274699 + 0: The maximum resident set size (KB) = 1399512 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_stochy_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.480282 - 0: The maximum resident set size (KB) = 642524 + 0: The total amount of wall time = 87.226449 + 0: The maximum resident set size (KB) = 642132 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_stochy_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.550219 - 0: The maximum resident set size (KB) = 492504 + 0: The total amount of wall time = 48.523900 + 0: The maximum resident set size (KB) = 495980 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.341787 - 0: The maximum resident set size (KB) = 638556 + 0: The total amount of wall time = 82.184805 + 0: The maximum resident set size (KB) = 638712 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_iovr4_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.413029 - 0: The maximum resident set size (KB) = 637104 + 0: The total amount of wall time = 135.922877 + 0: The maximum resident set size (KB) = 635016 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_iovr5_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.341721 - 0: The maximum resident set size (KB) = 632252 + 0: The total amount of wall time = 138.564113 + 0: The maximum resident set size (KB) = 633036 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.735281 - 0: The maximum resident set size (KB) = 1609804 + 0: The total amount of wall time = 174.241823 + 0: The maximum resident set size (KB) = 1573956 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.751115 - 0: The maximum resident set size (KB) = 883748 + 0: The total amount of wall time = 90.606428 + 0: The maximum resident set size (KB) = 876960 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.949607 - 0: The maximum resident set size (KB) = 1615988 + 0: The total amount of wall time = 169.068747 + 0: The maximum resident set size (KB) = 1608828 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.637257 - 0: The maximum resident set size (KB) = 867756 + 0: The total amount of wall time = 89.186012 + 0: The maximum resident set size (KB) = 871336 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.707467 - 0: The maximum resident set size (KB) = 1592288 + 0: The total amount of wall time = 178.708426 + 0: The maximum resident set size (KB) = 1593276 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.154742 - 0: The maximum resident set size (KB) = 1695304 + 0: The total amount of wall time = 158.929619 + 0: The maximum resident set size (KB) = 1683884 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 316.839647 - 0: The maximum resident set size (KB) = 1603924 + 0: The total amount of wall time = 315.892252 + 0: The maximum resident set size (KB) = 1604692 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_rrtmgp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.624700 - 0: The maximum resident set size (KB) = 1670816 + 0: The total amount of wall time = 227.186800 + 0: The maximum resident set size (KB) = 1634040 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_mynn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.870549 - 0: The maximum resident set size (KB) = 1605308 + 0: The total amount of wall time = 176.440590 + 0: The maximum resident set size (KB) = 1593460 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/merra2_thompson_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.708581 - 0: The maximum resident set size (KB) = 1611516 + 0: The total amount of wall time = 196.832229 + 0: The maximum resident set size (KB) = 1564392 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.467054 - 0: The maximum resident set size (KB) = 881912 + 0: The total amount of wall time = 294.014478 + 0: The maximum resident set size (KB) = 867448 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.347389 - 0: The maximum resident set size (KB) = 869028 + 0: The total amount of wall time = 151.437910 + 0: The maximum resident set size (KB) = 870260 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.351251 - 0: The maximum resident set size (KB) = 887112 + 0: The total amount of wall time = 292.621136 + 0: The maximum resident set size (KB) = 878156 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.544791 - 0: The maximum resident set size (KB) = 872448 + 0: The total amount of wall time = 148.646135 + 0: The maximum resident set size (KB) = 869100 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 309.066540 - 0: The maximum resident set size (KB) = 878744 + 0: The total amount of wall time = 310.176829 + 0: The maximum resident set size (KB) = 876964 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.783494 - 0: The maximum resident set size (KB) = 860280 + 0: The total amount of wall time = 179.378403 + 0: The maximum resident set size (KB) = 828316 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_noquilt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.191480 - 0: The maximum resident set size (KB) = 863328 + 0: The total amount of wall time = 293.745088 + 0: The maximum resident set size (KB) = 858984 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 288.111448 - 0: The maximum resident set size (KB) = 876880 + 0: The total amount of wall time = 291.625769 + 0: The maximum resident set size (KB) = 873132 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_2dwrtdecomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.304098 - 0: The maximum resident set size (KB) = 880756 + 0: The total amount of wall time = 293.348767 + 0: The maximum resident set size (KB) = 884264 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_wofs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.248470 - 0: The maximum resident set size (KB) = 644492 + 0: The total amount of wall time = 375.284454 + 0: The maximum resident set size (KB) = 615044 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.155570 - 0: The maximum resident set size (KB) = 1063808 + 0: The total amount of wall time = 451.445266 + 0: The maximum resident set size (KB) = 1063288 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 233.266142 - 0: The maximum resident set size (KB) = 1203568 + 0: The total amount of wall time = 231.031793 + 0: The maximum resident set size (KB) = 1198876 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.021076 - 0: The maximum resident set size (KB) = 1005372 + 0: The total amount of wall time = 467.443537 + 0: The maximum resident set size (KB) = 1000724 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.114911 - 0: The maximum resident set size (KB) = 1143060 + 0: The total amount of wall time = 421.349472 + 0: The maximum resident set size (KB) = 1143128 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.096219 - 0: The maximum resident set size (KB) = 970688 + 0: The total amount of wall time = 228.040359 + 0: The maximum resident set size (KB) = 963632 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.988447 - 0: The maximum resident set size (KB) = 1073808 + 0: The total amount of wall time = 454.240825 + 0: The maximum resident set size (KB) = 1059108 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.718528 - 0: The maximum resident set size (KB) = 1008268 + 0: The total amount of wall time = 469.414843 + 0: The maximum resident set size (KB) = 1004168 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.950152 - 0: The maximum resident set size (KB) = 995844 + 0: The total amount of wall time = 333.318493 + 0: The maximum resident set size (KB) = 963256 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.106696 - 0: The maximum resident set size (KB) = 1060208 + 0: The total amount of wall time = 433.623851 + 0: The maximum resident set size (KB) = 1061412 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 428.768299 - 0: The maximum resident set size (KB) = 1067164 + 0: The total amount of wall time = 426.761210 + 0: The maximum resident set size (KB) = 1077916 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.538344 - 0: The maximum resident set size (KB) = 1009064 + 0: The total amount of wall time = 448.211212 + 0: The maximum resident set size (KB) = 1003464 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.918713 - 0: The maximum resident set size (KB) = 1081464 + 0: The total amount of wall time = 400.647331 + 0: The maximum resident set size (KB) = 1076212 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.361322 - 0: The maximum resident set size (KB) = 988028 + 0: The total amount of wall time = 320.496173 + 0: The maximum resident set size (KB) = 983008 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 323.842503 - 0: The maximum resident set size (KB) = 1019296 + 0: The total amount of wall time = 322.174899 + 0: The maximum resident set size (KB) = 1012892 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_v1beta_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.118032 - 0: The maximum resident set size (KB) = 1064152 + 0: The total amount of wall time = 444.733238 + 0: The maximum resident set size (KB) = 1064640 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_v1nssl_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.283604 - 0: The maximum resident set size (KB) = 691644 + 0: The total amount of wall time = 523.818353 + 0: The maximum resident set size (KB) = 694120 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 511.066766 - 0: The maximum resident set size (KB) = 762456 + 0: The total amount of wall time = 512.923135 + 0: The maximum resident set size (KB) = 783640 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3401,14 +3401,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 149.593920 - 0: The maximum resident set size (KB) = 1033508 + 0: The total amount of wall time = 149.932431 + 0: The maximum resident set size (KB) = 1033812 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.476717 - 0: The maximum resident set size (KB) = 988584 + 0: The total amount of wall time = 144.736120 + 0: The maximum resident set size (KB) = 988792 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3440,14 +3440,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.066574 - 0: The maximum resident set size (KB) = 950508 + 0: The total amount of wall time = 92.874998 + 0: The maximum resident set size (KB) = 940080 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 133.971015 - 0: The maximum resident set size (KB) = 991176 + 0: The total amount of wall time = 133.608748 + 0: The maximum resident set size (KB) = 992772 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3479,38 +3479,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.537055 - 0: The maximum resident set size (KB) = 1043032 + 0: The total amount of wall time = 151.608064 + 0: The maximum resident set size (KB) = 1009720 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 85.234141 - 0: The maximum resident set size (KB) = 1041844 + 0: The total amount of wall time = 85.487459 + 0: The maximum resident set size (KB) = 1028892 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.466438 - 0: The maximum resident set size (KB) = 1024464 + 0: The total amount of wall time = 96.982562 + 0: The maximum resident set size (KB) = 1039324 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_csawmg_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3521,14 +3521,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.890243 - 0: The maximum resident set size (KB) = 730776 + 0: The total amount of wall time = 335.240286 + 0: The maximum resident set size (KB) = 727496 Test 084 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_csawmgt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3539,14 +3539,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.479979 - 0: The maximum resident set size (KB) = 724928 + 0: The total amount of wall time = 332.224957 + 0: The maximum resident set size (KB) = 723960 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_ras_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3557,26 +3557,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.414735 - 0: The maximum resident set size (KB) = 727692 + 0: The total amount of wall time = 183.030357 + 0: The maximum resident set size (KB) = 732428 Test 086 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_wam_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.495078 - 0: The maximum resident set size (KB) = 648160 + 0: The total amount of wall time = 113.029835 + 0: The maximum resident set size (KB) = 610852 Test 087 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3623,14 +3623,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.815912 - 0: The maximum resident set size (KB) = 1602116 + 0: The total amount of wall time = 152.957247 + 0: The maximum resident set size (KB) = 1620412 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_control_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3641,56 +3641,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.959703 - 0: The maximum resident set size (KB) = 880488 + 0: The total amount of wall time = 269.574524 + 0: The maximum resident set size (KB) = 883848 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 838.984939 - 0: The maximum resident set size (KB) = 1065036 + 0: The total amount of wall time = 837.035914 + 0: The maximum resident set size (KB) = 1057844 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 478.062371 - 0: The maximum resident set size (KB) = 975868 + 0: The total amount of wall time = 469.878522 + 0: The maximum resident set size (KB) = 981436 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 740.025301 - 0: The maximum resident set size (KB) = 1023432 + 0: The total amount of wall time = 735.004233 + 0: The maximum resident set size (KB) = 998860 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_CubedSphereGrid_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3717,348 +3717,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.626718 - 0: The maximum resident set size (KB) = 798696 + 0: The total amount of wall time = 150.309408 + 0: The maximum resident set size (KB) = 793744 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.825028 - 0: The maximum resident set size (KB) = 777248 + 0: The total amount of wall time = 147.016403 + 0: The maximum resident set size (KB) = 799980 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_stochy_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.290611 - 0: The maximum resident set size (KB) = 798824 + 0: The total amount of wall time = 173.674796 + 0: The maximum resident set size (KB) = 801184 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.505443 - 0: The maximum resident set size (KB) = 780004 + 0: The total amount of wall time = 149.505858 + 0: The maximum resident set size (KB) = 796444 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_csawmg_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.694525 - 0: The maximum resident set size (KB) = 841848 + 0: The total amount of wall time = 230.516674 + 0: The maximum resident set size (KB) = 813480 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_csawmgt_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.218543 - 0: The maximum resident set size (KB) = 845552 + 0: The total amount of wall time = 224.536463 + 0: The maximum resident set size (KB) = 846664 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_ras_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.719214 - 0: The maximum resident set size (KB) = 806164 + 0: The total amount of wall time = 149.829286 + 0: The maximum resident set size (KB) = 807684 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.291687 - 0: The maximum resident set size (KB) = 853868 + 0: The total amount of wall time = 159.702955 + 0: The maximum resident set size (KB) = 852160 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.428897 - 0: The maximum resident set size (KB) = 1622092 + 0: The total amount of wall time = 165.300182 + 0: The maximum resident set size (KB) = 1623080 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1006.973249 - 0: The maximum resident set size (KB) = 884728 + 0: The total amount of wall time = 984.575608 + 0: The maximum resident set size (KB) = 894828 Test 102 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.820184 - 0: The maximum resident set size (KB) = 1186780 + 0: The total amount of wall time = 278.363196 + 0: The maximum resident set size (KB) = 1183676 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.291606 - 0: The maximum resident set size (KB) = 1183976 + 0: The total amount of wall time = 264.545642 + 0: The maximum resident set size (KB) = 1172228 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_unified_drag_suite_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.061700 - 0: The maximum resident set size (KB) = 1181356 + 0: The total amount of wall time = 279.205525 + 0: The maximum resident set size (KB) = 1144400 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.860043 - 0: The maximum resident set size (KB) = 1262312 + 0: The total amount of wall time = 284.495118 + 0: The maximum resident set size (KB) = 1260228 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.478122 - 0: The maximum resident set size (KB) = 1176324 + 0: The total amount of wall time = 281.414475 + 0: The maximum resident set size (KB) = 1172416 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_unified_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.061863 - 0: The maximum resident set size (KB) = 1181552 + 0: The total amount of wall time = 278.555020 + 0: The maximum resident set size (KB) = 1182084 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.764424 - 0: The maximum resident set size (KB) = 1160584 + 0: The total amount of wall time = 276.615592 + 0: The maximum resident set size (KB) = 1186476 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_progcld_thompson_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.075607 - 0: The maximum resident set size (KB) = 1176352 + 0: The total amount of wall time = 274.609773 + 0: The maximum resident set size (KB) = 1188360 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_noah_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.435016 - 0: The maximum resident set size (KB) = 1183168 + 0: The total amount of wall time = 272.520431 + 0: The maximum resident set size (KB) = 1158132 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.633987 - 0: The maximum resident set size (KB) = 1184868 + 0: The total amount of wall time = 275.187155 + 0: The maximum resident set size (KB) = 1175884 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 455.002830 - 0: The maximum resident set size (KB) = 1175540 + 0: The total amount of wall time = 457.209605 + 0: The maximum resident set size (KB) = 1183916 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_v1beta_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.406569 - 0: The maximum resident set size (KB) = 1178772 + 0: The total amount of wall time = 271.275496 + 0: The maximum resident set size (KB) = 1182008 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_clm_lake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 329.427134 - 0: The maximum resident set size (KB) = 1182492 + 0: The total amount of wall time = 344.204167 + 0: The maximum resident set size (KB) = 1171188 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_flake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.998174 - 0: The maximum resident set size (KB) = 1179872 + 0: The total amount of wall time = 277.284863 + 0: The maximum resident set size (KB) = 1182684 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_wam_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 275.424191 - 0: The maximum resident set size (KB) = 527780 + 0: The total amount of wall time = 277.198264 + 0: The maximum resident set size (KB) = 524960 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4069,14 +4069,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.972948 - 0: The maximum resident set size (KB) = 1096896 + 0: The total amount of wall time = 220.341940 + 0: The maximum resident set size (KB) = 1090960 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4123,14 +4123,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.741918 - 0: The maximum resident set size (KB) = 1015504 + 0: The total amount of wall time = 369.972608 + 0: The maximum resident set size (KB) = 1006288 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4177,14 +4177,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.326036 - 0: The maximum resident set size (KB) = 964152 + 0: The total amount of wall time = 192.829994 + 0: The maximum resident set size (KB) = 955220 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4231,14 +4231,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.727912 - 0: The maximum resident set size (KB) = 951332 + 0: The total amount of wall time = 188.656656 + 0: The maximum resident set size (KB) = 967804 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4285,14 +4285,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.725471 - 0: The maximum resident set size (KB) = 1030984 + 0: The total amount of wall time = 351.356990 + 0: The maximum resident set size (KB) = 1020904 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4339,14 +4339,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.509533 - 0: The maximum resident set size (KB) = 948436 + 0: The total amount of wall time = 177.211728 + 0: The maximum resident set size (KB) = 933892 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.122878 - 0: The maximum resident set size (KB) = 903096 + 0: The total amount of wall time = 201.103200 + 0: The maximum resident set size (KB) = 892792 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4439,42 +4439,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.171563 - 0: The maximum resident set size (KB) = 958908 + 0: The total amount of wall time = 274.646423 + 0: The maximum resident set size (KB) = 950676 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.113913 - 0: The maximum resident set size (KB) = 866192 + 0: The total amount of wall time = 99.207491 + 0: The maximum resident set size (KB) = 855208 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.267007 - 0: The maximum resident set size (KB) = 884872 + 0: The total amount of wall time = 103.049062 + 0: The maximum resident set size (KB) = 882384 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 113.632455 - 0: The maximum resident set size (KB) = 910796 + 0: The total amount of wall time = 114.377652 + 0: The maximum resident set size (KB) = 907500 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4513,38 +4513,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 110.895250 - 0: The maximum resident set size (KB) = 937220 + 0: The total amount of wall time = 112.481046 + 0: The maximum resident set size (KB) = 940908 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.600678 - 0: The maximum resident set size (KB) = 903692 + 0: The total amount of wall time = 66.306158 + 0: The maximum resident set size (KB) = 905020 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 72.627218 - 0: The maximum resident set size (KB) = 960308 + 0: The total amount of wall time = 76.141448 + 0: The maximum resident set size (KB) = 962384 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_dyn64_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4591,81 +4591,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.043500 - 0: The maximum resident set size (KB) = 976792 + 0: The total amount of wall time = 237.845884 + 0: The maximum resident set size (KB) = 956544 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.902199 - 0: The maximum resident set size (KB) = 1073284 + 0: The total amount of wall time = 273.820781 + 0: The maximum resident set size (KB) = 1061740 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.846733 - 0: The maximum resident set size (KB) = 1063680 + 0: The total amount of wall time = 263.858349 + 0: The maximum resident set size (KB) = 1067948 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.890232 - 0: The maximum resident set size (KB) = 1100148 + 0: The total amount of wall time = 270.847957 + 0: The maximum resident set size (KB) = 1108820 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 229.335075 - 0: The maximum resident set size (KB) = 1071060 + 0: The total amount of wall time = 241.639850 + 0: The maximum resident set size (KB) = 1026256 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 331.260890 - 0: The maximum resident set size (KB) = 1442344 + 0: The total amount of wall time = 357.222105 + 0: The maximum resident set size (KB) = 1424260 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4674,14 +4674,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.766154 - 0: The maximum resident set size (KB) = 1236088 + 0: The total amount of wall time = 377.125539 + 0: The maximum resident set size (KB) = 1245628 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_atm_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,14 +4690,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 754.218252 - 0: The maximum resident set size (KB) = 1273204 + 0: The total amount of wall time = 746.514022 + 0: The maximum resident set size (KB) = 1249264 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 843.669141 - 0: The maximum resident set size (KB) = 1293140 + 0: The total amount of wall time = 844.288452 + 0: The maximum resident set size (KB) = 1294652 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 295.333271 - 0: The maximum resident set size (KB) = 520168 + 0: The total amount of wall time = 304.820149 + 0: The maximum resident set size (KB) = 515000 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 308.676574 - 0: The maximum resident set size (KB) = 488972 + 0: The total amount of wall time = 313.334109 + 0: The maximum resident set size (KB) = 488344 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4782,14 +4782,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 340.712088 - 0: The maximum resident set size (KB) = 527544 + 0: The total amount of wall time = 339.684003 + 0: The maximum resident set size (KB) = 518288 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_global_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4836,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 138.005926 - 0: The maximum resident set size (KB) = 355368 + 0: The total amount of wall time = 137.389222 + 0: The maximum resident set size (KB) = 358556 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4890,14 +4890,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 141.894492 - 0: The maximum resident set size (KB) = 362332 + 0: The total amount of wall time = 149.742052 + 0: The maximum resident set size (KB) = 364904 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 390.104044 - 0: The maximum resident set size (KB) = 457212 + 0: The total amount of wall time = 400.135366 + 0: The maximum resident set size (KB) = 432240 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 436.541140 - 0: The maximum resident set size (KB) = 475124 + 0: The total amount of wall time = 434.609100 + 0: The maximum resident set size (KB) = 452772 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,14 +5084,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 193.466198 - 0: The maximum resident set size (KB) = 505304 + 0: The total amount of wall time = 194.036282 + 0: The maximum resident set size (KB) = 532604 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5113,14 +5113,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 180.680558 - 0: The maximum resident set size (KB) = 528492 + 0: The total amount of wall time = 183.827643 + 0: The maximum resident set size (KB) = 525180 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5142,14 +5142,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 202.878277 - 0: The maximum resident set size (KB) = 524836 + 0: The total amount of wall time = 205.575308 + 0: The maximum resident set size (KB) = 522292 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5158,42 +5158,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 220.860793 - 0: The maximum resident set size (KB) = 576308 + 0: The total amount of wall time = 224.946510 + 0: The maximum resident set size (KB) = 575748 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 56.581389 - 0: The maximum resident set size (KB) = 376924 + 0: The total amount of wall time = 54.508541 + 0: The maximum resident set size (KB) = 375944 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 717.259807 - 0: The maximum resident set size (KB) = 596252 + 0: The total amount of wall time = 722.338961 + 0: The maximum resident set size (KB) = 592560 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,14 +5204,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 481.570684 - 0: The maximum resident set size (KB) = 666936 + 0: The total amount of wall time = 476.836348 + 0: The maximum resident set size (KB) = 643528 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_docn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 341.784813 - 0: The maximum resident set size (KB) = 1256988 + 0: The total amount of wall time = 343.971761 + 0: The maximum resident set size (KB) = 1256260 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_docn_oisst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5234,131 +5234,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 345.998948 - 0: The maximum resident set size (KB) = 1234148 + 0: The total amount of wall time = 349.493283 + 0: The maximum resident set size (KB) = 1226720 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hafs_regional_datm_cdeps_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 969.389397 - 0: The maximum resident set size (KB) = 1210504 + 0: The total amount of wall time = 968.777442 + 0: The maximum resident set size (KB) = 1208356 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_control_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.112098 - 0: The maximum resident set size (KB) = 1103260 + 0: The total amount of wall time = 156.601054 + 0: The maximum resident set size (KB) = 1099072 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.850336 - 0: The maximum resident set size (KB) = 1056140 + 0: The total amount of wall time = 91.067271 + 0: The maximum resident set size (KB) = 1056376 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_control_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.603014 - 0: The maximum resident set size (KB) = 997092 + 0: The total amount of wall time = 157.062871 + 0: The maximum resident set size (KB) = 972932 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_iau_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.101114 - 0: The maximum resident set size (KB) = 998460 + 0: The total amount of wall time = 155.001186 + 0: The maximum resident set size (KB) = 989576 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.120315 - 0: The maximum resident set size (KB) = 990416 + 0: The total amount of wall time = 158.659617 + 0: The maximum resident set size (KB) = 980440 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.487963 - 0: The maximum resident set size (KB) = 1103012 + 0: The total amount of wall time = 158.139001 + 0: The maximum resident set size (KB) = 1093284 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.369868 - 0: The maximum resident set size (KB) = 1104188 + 0: The total amount of wall time = 159.590653 + 0: The maximum resident set size (KB) = 1098612 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.584046 - 0: The maximum resident set size (KB) = 987320 + 0: The total amount of wall time = 150.807023 + 0: The maximum resident set size (KB) = 987592 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5367,14 +5367,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 416.306759 - 0: The maximum resident set size (KB) = 1013640 + 0: The total amount of wall time = 397.482253 + 0: The maximum resident set size (KB) = 1013604 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5383,77 +5383,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 422.027967 - 0: The maximum resident set size (KB) = 1007676 + 0: The total amount of wall time = 398.785078 + 0: The maximum resident set size (KB) = 1004908 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.451612 - 0: The maximum resident set size (KB) = 1099804 + 0: The total amount of wall time = 152.481861 + 0: The maximum resident set size (KB) = 1101976 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 244.138508 - 0: The maximum resident set size (KB) = 2385868 + 0: The total amount of wall time = 245.966577 + 0: The maximum resident set size (KB) = 2451300 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_gfs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 232.586869 - 0: The maximum resident set size (KB) = 2395248 + 0: The total amount of wall time = 249.163144 + 0: The maximum resident set size (KB) = 2375056 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 349.922518 - 0: The maximum resident set size (KB) = 1035916 + 0: The total amount of wall time = 360.230418 + 0: The maximum resident set size (KB) = 1028596 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.385836 - 0: The maximum resident set size (KB) = 1109736 + 0: The total amount of wall time = 148.734590 + 0: The maximum resident set size (KB) = 1098040 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5462,14 +5462,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.755867 - 0: The maximum resident set size (KB) = 248460 + 0: The total amount of wall time = 6.214879 + 0: The maximum resident set size (KB) = 247340 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5478,14 +5478,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.312079 - 0: The maximum resident set size (KB) = 242176 + 0: The total amount of wall time = 10.147316 + 0: The maximum resident set size (KB) = 246780 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_atmlnd_sbs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5570,14 +5570,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 208.663558 - 0: The maximum resident set size (KB) = 1608524 + 0: The total amount of wall time = 205.193406 + 0: The maximum resident set size (KB) = 1612972 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/atmwav_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5620,14 +5620,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 95.366779 - 0: The maximum resident set size (KB) = 1653464 + 0: The total amount of wall time = 96.690220 + 0: The maximum resident set size (KB) = 1632604 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_atmwav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.237017 - 0: The maximum resident set size (KB) = 659104 + 0: The total amount of wall time = 89.109591 + 0: The maximum resident set size (KB) = 658392 Test 177 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/atmaero_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5722,14 +5722,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.203098 - 0: The maximum resident set size (KB) = 2988580 + 0: The total amount of wall time = 231.163919 + 0: The maximum resident set size (KB) = 2986044 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/atmaero_control_p8_rad_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5773,14 +5773,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.125270 - 0: The maximum resident set size (KB) = 3053848 + 0: The total amount of wall time = 285.499478 + 0: The maximum resident set size (KB) = 3058668 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5824,14 +5824,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.205618 - 0: The maximum resident set size (KB) = 3060516 + 0: The total amount of wall time = 287.299370 + 0: The maximum resident set size (KB) = 3069836 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_atmaq_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5847,14 +5847,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 629.612471 - 0: The maximum resident set size (KB) = 2346224 + 0: The total amount of wall time = 650.931714 + 0: The maximum resident set size (KB) = 2331396 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_atmaq_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5868,14 +5868,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1208.695938 - 0: The maximum resident set size (KB) = 2178924 + 0: The total amount of wall time = 1222.558014 + 0: The maximum resident set size (KB) = 2164956 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_atmaq_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5891,14 +5891,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 557.376498 - 0: The maximum resident set size (KB) = 2326072 + 0: The total amount of wall time = 579.673190 + 0: The maximum resident set size (KB) = 2211076 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_c48_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5937,14 +5937,14 @@ Checking test 184 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 681.569984 -0: The maximum resident set size (KB) = 705900 +0: The total amount of wall time = 687.821844 +0: The maximum resident set size (KB) = 708752 Test 184 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_stochy_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5955,14 +5955,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 641.019838 - 0: The maximum resident set size (KB) = 484776 + 0: The total amount of wall time = 648.237326 + 0: The maximum resident set size (KB) = 486136 Test 185 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_ras_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5973,14 +5973,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 832.159474 - 0: The maximum resident set size (KB) = 492376 + 0: The total amount of wall time = 812.999998 + 0: The maximum resident set size (KB) = 488152 Test 186 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6027,14 +6027,14 @@ Checking test 187 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 896.953474 - 0: The maximum resident set size (KB) = 1239840 + 0: The total amount of wall time = 911.457443 + 0: The maximum resident set size (KB) = 1237920 Test 187 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_flake_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6045,14 +6045,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1529.554623 - 0: The maximum resident set size (KB) = 526868 + 0: The total amount of wall time = 1576.068642 + 0: The maximum resident set size (KB) = 533880 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6099,14 +6099,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1483.743535 - 0: The maximum resident set size (KB) = 833944 + 0: The total amount of wall time = 1480.093408 + 0: The maximum resident set size (KB) = 832664 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6153,14 +6153,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1460.480196 - 0: The maximum resident set size (KB) = 835492 + 0: The total amount of wall time = 1471.271981 + 0: The maximum resident set size (KB) = 832208 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6207,14 +6207,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1329.739100 - 0: The maximum resident set size (KB) = 904268 + 0: The total amount of wall time = 1335.976147 + 0: The maximum resident set size (KB) = 902172 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6253,14 +6253,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 723.159462 - 0: The maximum resident set size (KB) = 544684 + 0: The total amount of wall time = 722.010777 + 0: The maximum resident set size (KB) = 547220 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6307,14 +6307,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1501.848041 - 0: The maximum resident set size (KB) = 838104 + 0: The total amount of wall time = 1451.443119 + 0: The maximum resident set size (KB) = 833536 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6361,14 +6361,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1473.521088 - 0: The maximum resident set size (KB) = 833752 + 0: The total amount of wall time = 1507.727428 + 0: The maximum resident set size (KB) = 831104 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_sfcdiff_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6407,14 +6407,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1107.351353 - 0: The maximum resident set size (KB) = 559152 + 0: The total amount of wall time = 1078.532077 + 0: The maximum resident set size (KB) = 552004 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6461,14 +6461,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.082245 - 0: The maximum resident set size (KB) = 832800 + 0: The total amount of wall time = 1437.608789 + 0: The maximum resident set size (KB) = 831056 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_qr_gnu Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6515,14 +6515,14 @@ Checking test 197 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1486.317691 - 0: The maximum resident set size (KB) = 837460 + 0: The total amount of wall time = 1457.528245 + 0: The maximum resident set size (KB) = 844776 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6569,14 +6569,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1494.405696 - 0: The maximum resident set size (KB) = 899244 + 0: The total amount of wall time = 1542.222980 + 0: The maximum resident set size (KB) = 893664 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6623,42 +6623,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.595814 - 0: The maximum resident set size (KB) = 830676 + 0: The total amount of wall time = 1474.591259 + 0: The maximum resident set size (KB) = 831916 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1048.316319 - 0: The maximum resident set size (KB) = 545952 + 0: The total amount of wall time = 1047.955762 + 0: The maximum resident set size (KB) = 549608 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1120.650060 - 0: The maximum resident set size (KB) = 569348 + 0: The total amount of wall time = 1071.875074 + 0: The maximum resident set size (KB) = 570876 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_v1beta_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6705,14 +6705,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1422.195314 - 0: The maximum resident set size (KB) = 827960 + 0: The total amount of wall time = 1425.455157 + 0: The maximum resident set size (KB) = 828788 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6728,14 +6728,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 800.362658 - 0: The maximum resident set size (KB) = 657680 + 0: The total amount of wall time = 812.350496 + 0: The maximum resident set size (KB) = 655908 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6751,14 +6751,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 832.645283 - 0: The maximum resident set size (KB) = 616612 + 0: The total amount of wall time = 851.791278 + 0: The maximum resident set size (KB) = 615580 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6767,14 +6767,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1101.576539 - 0: The maximum resident set size (KB) = 662172 + 0: The total amount of wall time = 1058.067437 + 0: The maximum resident set size (KB) = 658500 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6783,14 +6783,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 831.529588 - 0: The maximum resident set size (KB) = 659204 + 0: The total amount of wall time = 839.511580 + 0: The maximum resident set size (KB) = 663596 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6806,274 +6806,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 790.303779 - 0: The maximum resident set size (KB) = 644272 + 0: The total amount of wall time = 737.408546 + 0: The maximum resident set size (KB) = 646104 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 420.272406 - 0: The maximum resident set size (KB) = 652144 + 0: The total amount of wall time = 426.674306 + 0: The maximum resident set size (KB) = 652368 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 491.812630 - 0: The maximum resident set size (KB) = 680240 + 0: The total amount of wall time = 482.929200 + 0: The maximum resident set size (KB) = 675328 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_diag_debug_gnu Checking test 210 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.690687 - 0: The maximum resident set size (KB) = 534612 + 0: The total amount of wall time = 127.498534 + 0: The maximum resident set size (KB) = 532084 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/regional_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/regional_debug_gnu Checking test 211 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 558.158160 - 0: The maximum resident set size (KB) = 594384 + 0: The total amount of wall time = 717.229976 + 0: The maximum resident set size (KB) = 595784 Test 211 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_debug_gnu Checking test 212 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.104280 - 0: The maximum resident set size (KB) = 847552 + 0: The total amount of wall time = 179.616113 + 0: The maximum resident set size (KB) = 843364 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_debug_gnu Checking test 213 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.402798 - 0: The maximum resident set size (KB) = 843764 + 0: The total amount of wall time = 173.934509 + 0: The maximum resident set size (KB) = 839212 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_diag_debug_gnu Checking test 214 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.919295 - 0: The maximum resident set size (KB) = 925172 + 0: The total amount of wall time = 211.491104 + 0: The maximum resident set size (KB) = 923380 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.166309 - 0: The maximum resident set size (KB) = 839836 + 0: The total amount of wall time = 272.372821 + 0: The maximum resident set size (KB) = 841420 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_progcld_thompson_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_progcld_thompson_debug_gnu Checking test 216 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.861371 - 0: The maximum resident set size (KB) = 846116 + 0: The total amount of wall time = 173.268072 + 0: The maximum resident set size (KB) = 844308 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_v1beta_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_v1beta_debug_gnu Checking test 217 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.420350 - 0: The maximum resident set size (KB) = 846252 + 0: The total amount of wall time = 173.060969 + 0: The maximum resident set size (KB) = 844640 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_ras_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_ras_debug_gnu Checking test 218 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.964340 - 0: The maximum resident set size (KB) = 482696 + 0: The total amount of wall time = 100.262093 + 0: The maximum resident set size (KB) = 486144 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_stochy_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.092179 - 0: The maximum resident set size (KB) = 478348 + 0: The total amount of wall time = 114.919383 + 0: The maximum resident set size (KB) = 478536 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_debug_p8_gnu Checking test 220 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.965059 - 0: The maximum resident set size (KB) = 1232028 + 0: The total amount of wall time = 118.087115 + 0: The maximum resident set size (KB) = 1229756 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 642.528676 - 0: The maximum resident set size (KB) = 674000 + 0: The total amount of wall time = 614.353636 + 0: The maximum resident set size (KB) = 674060 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 769.756569 - 0: The maximum resident set size (KB) = 679700 + 0: The total amount of wall time = 786.238854 + 0: The maximum resident set size (KB) = 676388 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.670904 - 0: The maximum resident set size (KB) = 660560 + 0: The total amount of wall time = 597.906953 + 0: The maximum resident set size (KB) = 656024 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_flake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_flake_debug_gnu Checking test 224 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.274195 - 0: The maximum resident set size (KB) = 847568 + 0: The total amount of wall time = 172.358426 + 0: The maximum resident set size (KB) = 846808 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_clm_lake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_clm_lake_debug_gnu Checking test 225 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.700455 - 0: The maximum resident set size (KB) = 843540 + 0: The total amount of wall time = 194.582518 + 0: The maximum resident set size (KB) = 846816 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/control_wam_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 185.783440 - 0: The maximum resident set size (KB) = 195456 + 0: The total amount of wall time = 185.437637 + 0: The maximum resident set size (KB) = 198744 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7120,14 +7120,14 @@ Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1518.120888 - 0: The maximum resident set size (KB) = 693408 + 0: The total amount of wall time = 1483.791076 + 0: The maximum resident set size (KB) = 689688 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7174,14 +7174,14 @@ Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 738.660628 - 0: The maximum resident set size (KB) = 687464 + 0: The total amount of wall time = 750.317149 + 0: The maximum resident set size (KB) = 691904 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7228,14 +7228,14 @@ Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 744.129917 - 0: The maximum resident set size (KB) = 695864 + 0: The total amount of wall time = 753.039059 + 0: The maximum resident set size (KB) = 697304 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7282,14 +7282,14 @@ Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1367.196966 - 0: The maximum resident set size (KB) = 738636 + 0: The total amount of wall time = 1395.240943 + 0: The maximum resident set size (KB) = 739928 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7336,14 +7336,14 @@ Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 795.415938 - 0: The maximum resident set size (KB) = 729804 + 0: The total amount of wall time = 782.440005 + 0: The maximum resident set size (KB) = 736132 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7390,14 +7390,14 @@ Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.710942 - 0: The maximum resident set size (KB) = 691388 + 0: The total amount of wall time = 733.368181 + 0: The maximum resident set size (KB) = 692152 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7436,42 +7436,42 @@ Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1071.635853 - 0: The maximum resident set size (KB) = 523592 + 0: The total amount of wall time = 1090.241909 + 0: The maximum resident set size (KB) = 521016 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 376.868449 - 0: The maximum resident set size (KB) = 512548 + 0: The total amount of wall time = 369.362290 + 0: The maximum resident set size (KB) = 511124 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 373.154304 - 0: The maximum resident set size (KB) = 536084 + 0: The total amount of wall time = 380.467482 + 0: The maximum resident set size (KB) = 534452 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7487,14 +7487,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 791.205229 - 0: The maximum resident set size (KB) = 578232 + 0: The total amount of wall time = 802.002789 + 0: The maximum resident set size (KB) = 579028 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7510,38 +7510,38 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 754.342116 - 0: The maximum resident set size (KB) = 577012 + 0: The total amount of wall time = 768.580396 + 0: The maximum resident set size (KB) = 575824 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 406.499057 - 0: The maximum resident set size (KB) = 571456 + 0: The total amount of wall time = 397.410573 + 0: The maximum resident set size (KB) = 572024 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 400.682861 - 0: The maximum resident set size (KB) = 604116 + 0: The total amount of wall time = 405.767715 + 0: The maximum resident set size (KB) = 601064 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_dyn64_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7588,56 +7588,56 @@ Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1095.089841 - 0: The maximum resident set size (KB) = 719420 + 0: The total amount of wall time = 1083.712429 + 0: The maximum resident set size (KB) = 711588 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_debug_dyn32_phy32_gnu Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.392657 - 0: The maximum resident set size (KB) = 701780 + 0: The total amount of wall time = 177.232861 + 0: The maximum resident set size (KB) = 699552 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.397805 - 0: The maximum resident set size (KB) = 698100 + 0: The total amount of wall time = 171.055004 + 0: The maximum resident set size (KB) = 702336 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/rap_control_dyn64_phy32_debug_gnu Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.691185 - 0: The maximum resident set size (KB) = 721956 + 0: The total amount of wall time = 201.470174 + 0: The maximum resident set size (KB) = 721144 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7702,14 +7702,14 @@ Checking test 244 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1713.064762 - 0: The maximum resident set size (KB) = 1431732 + 0: The total amount of wall time = 1894.811345 + 0: The maximum resident set size (KB) = 1444880 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7771,14 +7771,14 @@ Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1201.516487 - 0: The maximum resident set size (KB) = 1331196 + 0: The total amount of wall time = 1223.525738 + 0: The maximum resident set size (KB) = 1328976 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,14 +7831,14 @@ Checking test 246 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 783.015290 - 0: The maximum resident set size (KB) = 1446384 + 0: The total amount of wall time = 1426.744239 + 0: The maximum resident set size (KB) = 1448720 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_control_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7902,14 +7902,14 @@ Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1686.042463 - 0: The maximum resident set size (KB) = 1299436 + 0: The total amount of wall time = 1703.230805 + 0: The maximum resident set size (KB) = 1304076 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7961,25 +7961,25 @@ Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 897.029484 - 0: The maximum resident set size (KB) = 1306324 + 0: The total amount of wall time = 900.705092 + 0: The maximum resident set size (KB) = 1306544 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1667/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_128314/datm_cdeps_control_cfsr_gnu Checking test 249 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.137810 - 0: The maximum resident set size (KB) = 671056 + 0: The total amount of wall time = 175.862859 + 0: The maximum resident set size (KB) = 664520 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 16 06:29:53 UTC 2023 -Elapsed time: 02h:19m:36s. Have a nice day! +Fri Aug 18 00:08:15 UTC 2023 +Elapsed time: 01h:53m:10s. Have a nice day! From 6b63e02e97b3471aa9296388e05446f40d876fc5 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 18 Aug 2023 19:53:16 +0000 Subject: [PATCH 11/20] merge ccpp-physics #91 (UFS-SRW v3.0.0 SciDoc updates) --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index a14ed7f827..0d9066e97a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a14ed7f827493f6bcc5a6f56cf097c260ca8deef +Subproject commit 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c From 787b055d4018546a6ace64f1a7957a6d253cac35 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Sat, 19 Aug 2023 02:00:44 +0000 Subject: [PATCH 12/20] hera tests passed again --- tests/logs/RegressionTests_hera.log | 2102 ++++++++++++++------------- 1 file changed, 1052 insertions(+), 1050 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 8277d886c8..9f6a88504d 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Thu Aug 17 12:14:54 UTC 2023 +Fri Aug 18 21:10:07 UTC 2023 Start Regression test -Testing UFSWM Hash: ace946c95c02f7e1921dfe4b1a299274165a0c26 +Testing UFSWM Hash: 6b63e02e97b3471aa9296388e05446f40d876fc5 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1403-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 494f027076d3e8e0dbc9dd1a1980ff44383f47e9 ../FV3 (remotes/origin/BugFix_prv_rev) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/tanya-fix-20230724) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 250 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 176 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 182 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 190 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 179 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile atm_dyn64_phy32_debug_gnu elapsed time 185 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 275 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 562 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn64_phy32_gnu elapsed time 284 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 544 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atmaq_debug_intel elapsed time 181 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 552 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 531 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 541 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 550 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 575 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 126 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 578 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 201 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 587 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 590 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 231 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 613 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile atmaq_faster_intel elapsed time 547 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 524 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 552 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 559 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 552 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 526 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 119 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 194 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 121 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 587 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 208 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 601 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 584 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 221 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile s2sw_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 133 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 249 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 912 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 743 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 137 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 258 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 884 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile s2swa_debug_intel elapsed time 248 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1043 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 743 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 121 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_p8_mixedmode_intel +Compile s2swa_faster_intel elapsed time 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 646 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.018746 - 0: The maximum resident set size (KB) = 3153832 + 0: The total amount of wall time = 319.507314 + 0: The maximum resident set size (KB) = 3136876 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_gfsv17_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 213.468817 - 0: The maximum resident set size (KB) = 1666588 + 0: The total amount of wall time = 224.313267 + 0: The maximum resident set size (KB) = 1674288 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.915506 - 0: The maximum resident set size (KB) = 3137144 + 0: The total amount of wall time = 347.372977 + 0: The maximum resident set size (KB) = 3181172 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.920669 - 0: The maximum resident set size (KB) = 3062724 + 0: The total amount of wall time = 196.641485 + 0: The maximum resident set size (KB) = 3058828 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.613047 - 0: The maximum resident set size (KB) = 3206076 + 0: The total amount of wall time = 348.567786 + 0: The maximum resident set size (KB) = 3159824 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.492488 - 0: The maximum resident set size (KB) = 3073680 + 0: The total amount of wall time = 201.711625 + 0: The maximum resident set size (KB) = 3075276 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.764315 - 0: The maximum resident set size (KB) = 3532604 + 0: The total amount of wall time = 329.305106 + 0: The maximum resident set size (KB) = 3520188 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.378714 - 0: The maximum resident set size (KB) = 3181568 + 0: The total amount of wall time = 342.200588 + 0: The maximum resident set size (KB) = 3170664 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_mpi_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.389065 - 0: The maximum resident set size (KB) = 3037184 + 0: The total amount of wall time = 288.625291 + 0: The maximum resident set size (KB) = 2975000 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_ciceC_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.307051 - 0: The maximum resident set size (KB) = 3188636 + 0: The total amount of wall time = 345.152130 + 0: The maximum resident set size (KB) = 3176232 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 587.227916 - 0: The maximum resident set size (KB) = 3304996 + 0: The total amount of wall time = 592.343406 + 0: The maximum resident set size (KB) = 3305432 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_restart_c192_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 374.978044 - 0: The maximum resident set size (KB) = 3209236 + 0: The total amount of wall time = 379.612189 + 0: The maximum resident set size (KB) = 3205876 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 651.218361 - 0: The maximum resident set size (KB) = 4091628 + 0: The total amount of wall time = 656.380386 + 0: The maximum resident set size (KB) = 4090604 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_restart_bmark_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.563765 - 0: The maximum resident set size (KB) = 4020428 + 0: The total amount of wall time = 406.158440 + 0: The maximum resident set size (KB) = 4013784 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.292007 - 0: The maximum resident set size (KB) = 1715428 + 0: The total amount of wall time = 267.939897 + 0: The maximum resident set size (KB) = 1722484 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.313369 - 0: The maximum resident set size (KB) = 1770316 + 0: The total amount of wall time = 267.305095 + 0: The maximum resident set size (KB) = 1765164 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 508.083782 - 0: The maximum resident set size (KB) = 3219600 + 0: The total amount of wall time = 514.732317 + 0: The maximum resident set size (KB) = 3230664 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_debug_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.022420 - 0: The maximum resident set size (KB) = 1741456 + 0: The total amount of wall time = 357.630477 + 0: The maximum resident set size (KB) = 1740160 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.459082 - 0: The maximum resident set size (KB) = 1751200 + 0: The total amount of wall time = 262.487821 + 0: The maximum resident set size (KB) = 1752500 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 577.468570 - 0: The maximum resident set size (KB) = 2823388 + 0: The total amount of wall time = 595.275976 + 0: The maximum resident set size (KB) = 2805824 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.035156 - 0: The maximum resident set size (KB) = 3202328 + 0: The total amount of wall time = 329.549633 + 0: The maximum resident set size (KB) = 3174280 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1196.408825 - 0: The maximum resident set size (KB) = 1760332 + 0: The total amount of wall time = 1195.543529 + 0: The maximum resident set size (KB) = 1763192 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_restart_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 556.883008 - 0: The maximum resident set size (KB) = 1030516 + 0: The total amount of wall time = 559.996393 + 0: The maximum resident set size (KB) = 1035188 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1076.832991 - 0: The maximum resident set size (KB) = 1655748 + 0: The total amount of wall time = 1082.615938 + 0: The maximum resident set size (KB) = 1649876 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_debug_pdlib_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1375.881150 - 0: The maximum resident set size (KB) = 1700672 + 0: The total amount of wall time = 1341.579442 + 0: The maximum resident set size (KB) = 1702744 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_flake_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.386544 - 0: The maximum resident set size (KB) = 691096 + 0: The total amount of wall time = 188.432434 + 0: The maximum resident set size (KB) = 686920 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_CubedSphereGrid_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,20 +1719,20 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.741221 - 0: The maximum resident set size (KB) = 633868 + 0: The total amount of wall time = 130.450465 + 0: The maximum resident set size (KB) = 635084 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.222597 - 0: The maximum resident set size (KB) = 639612 + 0: The total amount of wall time = 139.724323 + 0: The maximum resident set size (KB) = 636148 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_latlon_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.352379 - 0: The maximum resident set size (KB) = 631316 + 0: The total amount of wall time = 134.335973 + 0: The maximum resident set size (KB) = 634140 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.019740 - 0: The maximum resident set size (KB) = 635220 + 0: The total amount of wall time = 136.888733 + 0: The maximum resident set size (KB) = 635856 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_c48_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 369.742147 -0: The maximum resident set size (KB) = 827364 +0: The total amount of wall time = 370.585867 +0: The maximum resident set size (KB) = 827616 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_c192_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.368767 - 0: The maximum resident set size (KB) = 784248 + 0: The total amount of wall time = 528.893708 + 0: The maximum resident set size (KB) = 787248 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_c384_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.930535 - 0: The maximum resident set size (KB) = 1282748 + 0: The total amount of wall time = 525.794390 + 0: The maximum resident set size (KB) = 1247816 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_c384gdas_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.701190 - 0: The maximum resident set size (KB) = 1404340 + 0: The total amount of wall time = 462.986219 + 0: The maximum resident set size (KB) = 1372384 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_stochy_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.474576 - 0: The maximum resident set size (KB) = 644640 + 0: The total amount of wall time = 87.583673 + 0: The maximum resident set size (KB) = 645080 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_stochy_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.969720 - 0: The maximum resident set size (KB) = 493748 + 0: The total amount of wall time = 48.857219 + 0: The maximum resident set size (KB) = 498036 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.352464 - 0: The maximum resident set size (KB) = 642340 + 0: The total amount of wall time = 81.760329 + 0: The maximum resident set size (KB) = 638648 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_iovr4_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.593754 - 0: The maximum resident set size (KB) = 635408 + 0: The total amount of wall time = 136.220357 + 0: The maximum resident set size (KB) = 639648 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_iovr5_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.913788 - 0: The maximum resident set size (KB) = 638088 + 0: The total amount of wall time = 138.338302 + 0: The maximum resident set size (KB) = 638908 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.042621 - 0: The maximum resident set size (KB) = 1587860 + 0: The total amount of wall time = 166.788078 + 0: The maximum resident set size (KB) = 1609776 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_restart_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.888818 - 0: The maximum resident set size (KB) = 874116 + 0: The total amount of wall time = 90.013702 + 0: The maximum resident set size (KB) = 851356 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.447750 - 0: The maximum resident set size (KB) = 1613524 + 0: The total amount of wall time = 170.689365 + 0: The maximum resident set size (KB) = 1612280 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_restart_qr_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.291964 - 0: The maximum resident set size (KB) = 873600 + 0: The total amount of wall time = 90.414216 + 0: The maximum resident set size (KB) = 874856 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_decomp_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.265402 - 0: The maximum resident set size (KB) = 1609504 + 0: The total amount of wall time = 177.282877 + 0: The maximum resident set size (KB) = 1593648 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_2threads_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.786119 - 0: The maximum resident set size (KB) = 1691376 + 0: The total amount of wall time = 157.114407 + 0: The maximum resident set size (KB) = 1685352 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_lndp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.331088 - 0: The maximum resident set size (KB) = 1607240 + 0: The total amount of wall time = 315.710697 + 0: The maximum resident set size (KB) = 1592256 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_rrtmgp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.808323 - 0: The maximum resident set size (KB) = 1662116 + 0: The total amount of wall time = 231.361911 + 0: The maximum resident set size (KB) = 1667340 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_mynn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.488157 - 0: The maximum resident set size (KB) = 1604144 + 0: The total amount of wall time = 176.496089 + 0: The maximum resident set size (KB) = 1592884 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/merra2_thompson_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.132299 - 0: The maximum resident set size (KB) = 1587036 + 0: The total amount of wall time = 196.758078 + 0: The maximum resident set size (KB) = 1608576 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.467870 - 0: The maximum resident set size (KB) = 880748 + 0: The total amount of wall time = 294.287891 + 0: The maximum resident set size (KB) = 879592 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.290667 - 0: The maximum resident set size (KB) = 867912 + 0: The total amount of wall time = 152.915477 + 0: The maximum resident set size (KB) = 880164 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.624584 - 0: The maximum resident set size (KB) = 881084 + 0: The total amount of wall time = 292.914675 + 0: The maximum resident set size (KB) = 883360 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.300720 - 0: The maximum resident set size (KB) = 868920 + 0: The total amount of wall time = 152.397989 + 0: The maximum resident set size (KB) = 873088 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 305.413561 - 0: The maximum resident set size (KB) = 876004 + 0: The total amount of wall time = 307.710881 + 0: The maximum resident set size (KB) = 873112 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 175.108516 - 0: The maximum resident set size (KB) = 861080 + 0: The total amount of wall time = 176.265154 + 0: The maximum resident set size (KB) = 857760 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_noquilt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 291.052073 - 0: The maximum resident set size (KB) = 866044 + 0: The total amount of wall time = 294.734556 + 0: The maximum resident set size (KB) = 857172 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_netcdf_parallel_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.425224 - 0: The maximum resident set size (KB) = 878884 + 0: The total amount of wall time = 287.149154 + 0: The maximum resident set size (KB) = 874508 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_2dwrtdecomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.249264 - 0: The maximum resident set size (KB) = 885096 + 0: The total amount of wall time = 293.151583 + 0: The maximum resident set size (KB) = 882092 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_wofs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.559514 - 0: The maximum resident set size (KB) = 646756 + 0: The total amount of wall time = 371.905795 + 0: The maximum resident set size (KB) = 621112 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.887485 - 0: The maximum resident set size (KB) = 1069132 + 0: The total amount of wall time = 452.211368 + 0: The maximum resident set size (KB) = 1060540 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 232.430384 - 0: The maximum resident set size (KB) = 1198116 + 0: The total amount of wall time = 231.966885 + 0: The maximum resident set size (KB) = 1189552 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.930746 - 0: The maximum resident set size (KB) = 1010732 + 0: The total amount of wall time = 470.881165 + 0: The maximum resident set size (KB) = 1012488 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.991928 - 0: The maximum resident set size (KB) = 1153636 + 0: The total amount of wall time = 419.842170 + 0: The maximum resident set size (KB) = 1147084 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.171724 - 0: The maximum resident set size (KB) = 964456 + 0: The total amount of wall time = 228.548843 + 0: The maximum resident set size (KB) = 964412 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.237120 - 0: The maximum resident set size (KB) = 1037912 + 0: The total amount of wall time = 451.798233 + 0: The maximum resident set size (KB) = 1071460 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.733279 - 0: The maximum resident set size (KB) = 1015364 + 0: The total amount of wall time = 470.233968 + 0: The maximum resident set size (KB) = 1004912 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.574795 - 0: The maximum resident set size (KB) = 992224 + 0: The total amount of wall time = 331.151425 + 0: The maximum resident set size (KB) = 988748 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.607738 - 0: The maximum resident set size (KB) = 1064280 + 0: The total amount of wall time = 437.125616 + 0: The maximum resident set size (KB) = 1054548 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.909798 - 0: The maximum resident set size (KB) = 1074036 + 0: The total amount of wall time = 429.226169 + 0: The maximum resident set size (KB) = 1073436 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_decomp_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.453288 - 0: The maximum resident set size (KB) = 1002952 + 0: The total amount of wall time = 449.964735 + 0: The maximum resident set size (KB) = 1004736 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.984271 - 0: The maximum resident set size (KB) = 1085860 + 0: The total amount of wall time = 401.094246 + 0: The maximum resident set size (KB) = 1077356 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.189569 - 0: The maximum resident set size (KB) = 986488 + 0: The total amount of wall time = 318.942743 + 0: The maximum resident set size (KB) = 984492 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.953734 - 0: The maximum resident set size (KB) = 1015812 + 0: The total amount of wall time = 323.570522 + 0: The maximum resident set size (KB) = 1013840 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_v1beta_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.735419 - 0: The maximum resident set size (KB) = 1064924 + 0: The total amount of wall time = 440.446097 + 0: The maximum resident set size (KB) = 1058352 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_v1nssl_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.075013 - 0: The maximum resident set size (KB) = 658020 + 0: The total amount of wall time = 525.589644 + 0: The maximum resident set size (KB) = 691352 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.658106 - 0: The maximum resident set size (KB) = 763344 + 0: The total amount of wall time = 514.995094 + 0: The maximum resident set size (KB) = 758648 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3401,14 +3401,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 150.816762 - 0: The maximum resident set size (KB) = 1033228 + 0: The total amount of wall time = 149.172514 + 0: The maximum resident set size (KB) = 1039596 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.768676 - 0: The maximum resident set size (KB) = 949148 + 0: The total amount of wall time = 145.653522 + 0: The maximum resident set size (KB) = 979076 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3440,14 +3440,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.405391 - 0: The maximum resident set size (KB) = 944804 + 0: The total amount of wall time = 93.734067 + 0: The maximum resident set size (KB) = 942736 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 132.792923 - 0: The maximum resident set size (KB) = 993884 + 0: The total amount of wall time = 134.636951 + 0: The maximum resident set size (KB) = 992140 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3479,38 +3479,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.022280 - 0: The maximum resident set size (KB) = 1033920 + 0: The total amount of wall time = 151.713033 + 0: The maximum resident set size (KB) = 1039952 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.550298 - 0: The maximum resident set size (KB) = 1032420 + 0: The total amount of wall time = 85.858447 + 0: The maximum resident set size (KB) = 1035868 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.992535 - 0: The maximum resident set size (KB) = 917016 + 0: The total amount of wall time = 89.915585 + 0: The maximum resident set size (KB) = 950924 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_csawmg_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3521,14 +3521,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.004168 - 0: The maximum resident set size (KB) = 693852 + 0: The total amount of wall time = 342.448698 + 0: The maximum resident set size (KB) = 724408 Test 084 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_csawmgt_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3539,14 +3539,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 355.503591 - 0: The maximum resident set size (KB) = 693732 + 0: The total amount of wall time = 335.211265 + 0: The maximum resident set size (KB) = 729076 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_ras_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3557,26 +3557,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.559646 - 0: The maximum resident set size (KB) = 727312 + 0: The total amount of wall time = 182.840162 + 0: The maximum resident set size (KB) = 728364 Test 086 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_wam_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.086758 - 0: The maximum resident set size (KB) = 649116 + 0: The total amount of wall time = 111.278075 + 0: The maximum resident set size (KB) = 648240 Test 087 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3623,14 +3623,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.864762 - 0: The maximum resident set size (KB) = 1602392 + 0: The total amount of wall time = 154.390137 + 0: The maximum resident set size (KB) = 1591720 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_control_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3641,56 +3641,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.914117 - 0: The maximum resident set size (KB) = 879652 + 0: The total amount of wall time = 265.091782 + 0: The maximum resident set size (KB) = 879664 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 838.661523 - 0: The maximum resident set size (KB) = 1062268 + 0: The total amount of wall time = 843.807988 + 0: The maximum resident set size (KB) = 1067716 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 472.482171 - 0: The maximum resident set size (KB) = 970688 + 0: The total amount of wall time = 469.375827 + 0: The maximum resident set size (KB) = 969352 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 746.195083 - 0: The maximum resident set size (KB) = 1018492 + 0: The total amount of wall time = 750.477475 + 0: The maximum resident set size (KB) = 1026040 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_CubedSphereGrid_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3717,348 +3717,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.114618 - 0: The maximum resident set size (KB) = 791696 + 0: The total amount of wall time = 146.514441 + 0: The maximum resident set size (KB) = 791616 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.527760 - 0: The maximum resident set size (KB) = 793452 + 0: The total amount of wall time = 148.429655 + 0: The maximum resident set size (KB) = 794352 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_stochy_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.729459 - 0: The maximum resident set size (KB) = 797048 + 0: The total amount of wall time = 161.310394 + 0: The maximum resident set size (KB) = 797260 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.637522 - 0: The maximum resident set size (KB) = 795396 + 0: The total amount of wall time = 146.966065 + 0: The maximum resident set size (KB) = 798956 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_csawmg_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.799688 - 0: The maximum resident set size (KB) = 848776 + 0: The total amount of wall time = 225.635517 + 0: The maximum resident set size (KB) = 842128 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_csawmgt_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.085466 - 0: The maximum resident set size (KB) = 839044 + 0: The total amount of wall time = 225.515083 + 0: The maximum resident set size (KB) = 841032 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_ras_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.967920 - 0: The maximum resident set size (KB) = 807624 + 0: The total amount of wall time = 152.496414 + 0: The maximum resident set size (KB) = 778176 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.190698 - 0: The maximum resident set size (KB) = 853152 + 0: The total amount of wall time = 156.377312 + 0: The maximum resident set size (KB) = 854092 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_debug_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.598731 - 0: The maximum resident set size (KB) = 1619492 + 0: The total amount of wall time = 172.111761 + 0: The maximum resident set size (KB) = 1585848 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 988.290993 - 0: The maximum resident set size (KB) = 888592 + 0: The total amount of wall time = 980.082573 + 0: The maximum resident set size (KB) = 861068 Test 102 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.959382 - 0: The maximum resident set size (KB) = 1182236 + 0: The total amount of wall time = 275.871721 + 0: The maximum resident set size (KB) = 1179976 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.091353 - 0: The maximum resident set size (KB) = 1170916 + 0: The total amount of wall time = 267.697068 + 0: The maximum resident set size (KB) = 1176720 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_unified_drag_suite_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.955915 - 0: The maximum resident set size (KB) = 1150916 + 0: The total amount of wall time = 272.756013 + 0: The maximum resident set size (KB) = 1189728 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_diag_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.902608 - 0: The maximum resident set size (KB) = 1254148 + 0: The total amount of wall time = 292.542812 + 0: The maximum resident set size (KB) = 1259608 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.265675 - 0: The maximum resident set size (KB) = 1177300 + 0: The total amount of wall time = 279.318612 + 0: The maximum resident set size (KB) = 1155244 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_unified_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.650519 - 0: The maximum resident set size (KB) = 1190020 + 0: The total amount of wall time = 279.927964 + 0: The maximum resident set size (KB) = 1183096 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_lndp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.738817 - 0: The maximum resident set size (KB) = 1178788 + 0: The total amount of wall time = 276.998101 + 0: The maximum resident set size (KB) = 1179296 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_progcld_thompson_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.509051 - 0: The maximum resident set size (KB) = 1172500 + 0: The total amount of wall time = 274.617701 + 0: The maximum resident set size (KB) = 1176572 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_noah_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.979598 - 0: The maximum resident set size (KB) = 1180408 + 0: The total amount of wall time = 272.544729 + 0: The maximum resident set size (KB) = 1172476 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.124709 - 0: The maximum resident set size (KB) = 1186304 + 0: The total amount of wall time = 277.555234 + 0: The maximum resident set size (KB) = 1174044 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.492334 - 0: The maximum resident set size (KB) = 1170124 + 0: The total amount of wall time = 455.450491 + 0: The maximum resident set size (KB) = 1178200 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_v1beta_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.015930 - 0: The maximum resident set size (KB) = 1172980 + 0: The total amount of wall time = 272.292115 + 0: The maximum resident set size (KB) = 1172584 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_clm_lake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 330.678886 - 0: The maximum resident set size (KB) = 1180456 + 0: The total amount of wall time = 348.503346 + 0: The maximum resident set size (KB) = 1187580 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_flake_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.440511 - 0: The maximum resident set size (KB) = 1182248 + 0: The total amount of wall time = 276.082207 + 0: The maximum resident set size (KB) = 1178488 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_wam_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 273.842511 - 0: The maximum resident set size (KB) = 513840 + 0: The total amount of wall time = 277.456005 + 0: The maximum resident set size (KB) = 512480 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4069,14 +4069,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 215.524506 - 0: The maximum resident set size (KB) = 1084452 + 0: The total amount of wall time = 219.813960 + 0: The maximum resident set size (KB) = 1091636 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4123,14 +4123,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.780861 - 0: The maximum resident set size (KB) = 1003060 + 0: The total amount of wall time = 370.989191 + 0: The maximum resident set size (KB) = 1007160 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4177,14 +4177,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.550461 - 0: The maximum resident set size (KB) = 957844 + 0: The total amount of wall time = 190.274706 + 0: The maximum resident set size (KB) = 953356 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4231,14 +4231,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.664532 - 0: The maximum resident set size (KB) = 971908 + 0: The total amount of wall time = 189.676836 + 0: The maximum resident set size (KB) = 969176 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4285,14 +4285,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.339464 - 0: The maximum resident set size (KB) = 1029032 + 0: The total amount of wall time = 347.263223 + 0: The maximum resident set size (KB) = 1030076 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4339,14 +4339,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.943502 - 0: The maximum resident set size (KB) = 947728 + 0: The total amount of wall time = 177.701672 + 0: The maximum resident set size (KB) = 933948 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.650456 - 0: The maximum resident set size (KB) = 910816 + 0: The total amount of wall time = 202.746516 + 0: The maximum resident set size (KB) = 902592 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4439,42 +4439,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.217447 - 0: The maximum resident set size (KB) = 955448 + 0: The total amount of wall time = 278.221286 + 0: The maximum resident set size (KB) = 956296 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.510282 - 0: The maximum resident set size (KB) = 863676 + 0: The total amount of wall time = 102.051775 + 0: The maximum resident set size (KB) = 857420 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.727993 - 0: The maximum resident set size (KB) = 874776 + 0: The total amount of wall time = 102.006273 + 0: The maximum resident set size (KB) = 884596 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.393524 - 0: The maximum resident set size (KB) = 911224 + 0: The total amount of wall time = 115.584829 + 0: The maximum resident set size (KB) = 910008 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4513,38 +4513,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 110.563432 - 0: The maximum resident set size (KB) = 912888 + 0: The total amount of wall time = 110.942019 + 0: The maximum resident set size (KB) = 933164 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 63.959643 - 0: The maximum resident set size (KB) = 905676 + 0: The total amount of wall time = 66.086825 + 0: The maximum resident set size (KB) = 903896 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.916734 - 0: The maximum resident set size (KB) = 962316 + 0: The total amount of wall time = 75.257808 + 0: The maximum resident set size (KB) = 969896 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_dyn64_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4591,81 +4591,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.814110 - 0: The maximum resident set size (KB) = 969600 + 0: The total amount of wall time = 240.774782 + 0: The maximum resident set size (KB) = 968228 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.421190 - 0: The maximum resident set size (KB) = 1064836 + 0: The total amount of wall time = 272.417029 + 0: The maximum resident set size (KB) = 1060352 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.649862 - 0: The maximum resident set size (KB) = 1061144 + 0: The total amount of wall time = 263.686467 + 0: The maximum resident set size (KB) = 1060868 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.648471 - 0: The maximum resident set size (KB) = 1091244 + 0: The total amount of wall time = 279.386311 + 0: The maximum resident set size (KB) = 1095364 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 228.266657 - 0: The maximum resident set size (KB) = 1058820 + 0: The total amount of wall time = 223.176118 + 0: The maximum resident set size (KB) = 1062216 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 335.565151 - 0: The maximum resident set size (KB) = 1442920 + 0: The total amount of wall time = 333.606247 + 0: The maximum resident set size (KB) = 1436000 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4674,14 +4674,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 382.140198 - 0: The maximum resident set size (KB) = 1244440 + 0: The total amount of wall time = 382.538117 + 0: The maximum resident set size (KB) = 1243712 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_atm_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,14 +4690,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 738.862264 - 0: The maximum resident set size (KB) = 1280620 + 0: The total amount of wall time = 740.624175 + 0: The maximum resident set size (KB) = 1238616 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 860.871589 - 0: The maximum resident set size (KB) = 1282940 + 0: The total amount of wall time = 848.601831 + 0: The maximum resident set size (KB) = 1283240 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 300.291783 - 0: The maximum resident set size (KB) = 520148 + 0: The total amount of wall time = 300.360485 + 0: The maximum resident set size (KB) = 517624 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 312.497956 - 0: The maximum resident set size (KB) = 469476 + 0: The total amount of wall time = 314.989680 + 0: The maximum resident set size (KB) = 493836 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4782,14 +4782,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 338.263193 - 0: The maximum resident set size (KB) = 523236 + 0: The total amount of wall time = 340.004121 + 0: The maximum resident set size (KB) = 523132 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_global_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4836,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 136.862908 - 0: The maximum resident set size (KB) = 358020 + 0: The total amount of wall time = 137.612374 + 0: The maximum resident set size (KB) = 362476 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4890,14 +4890,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 142.922173 - 0: The maximum resident set size (KB) = 364928 + 0: The total amount of wall time = 146.711335 + 0: The maximum resident set size (KB) = 364372 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 383.605566 - 0: The maximum resident set size (KB) = 436496 + 0: The total amount of wall time = 386.669093 + 0: The maximum resident set size (KB) = 434180 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 420.540433 - 0: The maximum resident set size (KB) = 474944 + 0: The total amount of wall time = 430.654645 + 0: The maximum resident set size (KB) = 458876 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,14 +5084,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 191.499140 - 0: The maximum resident set size (KB) = 527188 + 0: The total amount of wall time = 193.228601 + 0: The maximum resident set size (KB) = 529656 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5113,14 +5113,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 178.317494 - 0: The maximum resident set size (KB) = 533296 + 0: The total amount of wall time = 180.091346 + 0: The maximum resident set size (KB) = 529456 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5142,14 +5142,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 196.225517 - 0: The maximum resident set size (KB) = 524252 + 0: The total amount of wall time = 201.417583 + 0: The maximum resident set size (KB) = 515132 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5158,42 +5158,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 216.655008 - 0: The maximum resident set size (KB) = 579748 + 0: The total amount of wall time = 221.097086 + 0: The maximum resident set size (KB) = 575068 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 55.138436 - 0: The maximum resident set size (KB) = 377276 + 0: The total amount of wall time = 55.304900 + 0: The maximum resident set size (KB) = 375868 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 725.871444 - 0: The maximum resident set size (KB) = 621820 + 0: The total amount of wall time = 712.987662 + 0: The maximum resident set size (KB) = 592788 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,14 +5204,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 480.262167 - 0: The maximum resident set size (KB) = 668004 + 0: The total amount of wall time = 480.147701 + 0: The maximum resident set size (KB) = 673580 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_docn_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 343.380011 - 0: The maximum resident set size (KB) = 1253892 + 0: The total amount of wall time = 343.095035 + 0: The maximum resident set size (KB) = 1242544 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_docn_oisst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5234,131 +5234,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 350.921712 - 0: The maximum resident set size (KB) = 1224228 + 0: The total amount of wall time = 344.034112 + 0: The maximum resident set size (KB) = 1222888 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hafs_regional_datm_cdeps_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 956.793308 - 0: The maximum resident set size (KB) = 1200868 + 0: The total amount of wall time = 951.410087 + 0: The maximum resident set size (KB) = 1207464 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_control_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.870392 - 0: The maximum resident set size (KB) = 1094188 + 0: The total amount of wall time = 155.727767 + 0: The maximum resident set size (KB) = 1100168 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 95.182913 - 0: The maximum resident set size (KB) = 1042660 + 0: The total amount of wall time = 90.577273 + 0: The maximum resident set size (KB) = 1060888 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_control_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.220812 - 0: The maximum resident set size (KB) = 987812 + 0: The total amount of wall time = 150.196740 + 0: The maximum resident set size (KB) = 998904 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_iau_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.373946 - 0: The maximum resident set size (KB) = 989676 + 0: The total amount of wall time = 153.275444 + 0: The maximum resident set size (KB) = 980500 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.263522 - 0: The maximum resident set size (KB) = 987316 + 0: The total amount of wall time = 154.643299 + 0: The maximum resident set size (KB) = 1001400 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.914139 - 0: The maximum resident set size (KB) = 1104596 + 0: The total amount of wall time = 158.164148 + 0: The maximum resident set size (KB) = 1103440 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.568488 - 0: The maximum resident set size (KB) = 1094916 + 0: The total amount of wall time = 152.123659 + 0: The maximum resident set size (KB) = 1102912 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.459172 - 0: The maximum resident set size (KB) = 994832 + 0: The total amount of wall time = 147.347473 + 0: The maximum resident set size (KB) = 988176 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5367,14 +5367,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 410.691655 - 0: The maximum resident set size (KB) = 1012072 + 0: The total amount of wall time = 413.517044 + 0: The maximum resident set size (KB) = 1010488 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5383,77 +5383,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 395.060869 - 0: The maximum resident set size (KB) = 1011704 + 0: The total amount of wall time = 437.369929 + 0: The maximum resident set size (KB) = 999564 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.175228 - 0: The maximum resident set size (KB) = 1092472 + 0: The total amount of wall time = 154.933180 + 0: The maximum resident set size (KB) = 1099468 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 255.475647 - 0: The maximum resident set size (KB) = 2383352 + 0: The total amount of wall time = 245.849488 + 0: The maximum resident set size (KB) = 2393040 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_gfs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 244.200471 - 0: The maximum resident set size (KB) = 2446412 + 0: The total amount of wall time = 244.698386 + 0: The maximum resident set size (KB) = 2431860 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 367.036295 - 0: The maximum resident set size (KB) = 1025140 + 0: The total amount of wall time = 365.046697 + 0: The maximum resident set size (KB) = 1008016 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.075363 - 0: The maximum resident set size (KB) = 1101908 + 0: The total amount of wall time = 152.925428 + 0: The maximum resident set size (KB) = 1106256 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5462,14 +5462,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.950410 - 0: The maximum resident set size (KB) = 251032 + 0: The total amount of wall time = 6.154948 + 0: The maximum resident set size (KB) = 242076 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5478,14 +5478,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.643767 - 0: The maximum resident set size (KB) = 244800 + 0: The total amount of wall time = 10.154117 + 0: The maximum resident set size (KB) = 245984 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_atmlnd_sbs_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5570,14 +5570,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 209.143409 - 0: The maximum resident set size (KB) = 1612776 + 0: The total amount of wall time = 206.311496 + 0: The maximum resident set size (KB) = 1610184 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/atmwav_control_noaero_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5620,14 +5620,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.432852 - 0: The maximum resident set size (KB) = 1622404 + 0: The total amount of wall time = 97.443869 + 0: The maximum resident set size (KB) = 1600496 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_atmwav_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.884995 - 0: The maximum resident set size (KB) = 655856 + 0: The total amount of wall time = 87.926346 + 0: The maximum resident set size (KB) = 658976 Test 177 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/atmaero_control_p8_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5722,14 +5722,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.646702 - 0: The maximum resident set size (KB) = 2982168 + 0: The total amount of wall time = 233.099340 + 0: The maximum resident set size (KB) = 2972552 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/atmaero_control_p8_rad_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5773,14 +5773,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 301.759919 - 0: The maximum resident set size (KB) = 3050696 + 0: The total amount of wall time = 284.269164 + 0: The maximum resident set size (KB) = 3046796 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5824,14 +5824,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 303.168386 - 0: The maximum resident set size (KB) = 3063668 + 0: The total amount of wall time = 288.232269 + 0: The maximum resident set size (KB) = 3058184 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_atmaq_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5847,14 +5847,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 657.103135 - 0: The maximum resident set size (KB) = 2315416 + 0: The total amount of wall time = 648.147656 + 0: The maximum resident set size (KB) = 2359984 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_atmaq_debug_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5868,14 +5868,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1210.885168 - 0: The maximum resident set size (KB) = 2194572 + 0: The total amount of wall time = 1216.142729 + 0: The maximum resident set size (KB) = 2180008 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_atmaq_faster_intel +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5891,14 +5891,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 568.792906 - 0: The maximum resident set size (KB) = 2324228 + 0: The total amount of wall time = 553.985113 + 0: The maximum resident set size (KB) = 2340488 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_c48_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5937,14 +5937,14 @@ Checking test 184 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 682.192369 -0: The maximum resident set size (KB) = 710532 +0: The total amount of wall time = 687.961862 +0: The maximum resident set size (KB) = 706500 Test 184 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_stochy_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5955,14 +5955,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 660.210107 - 0: The maximum resident set size (KB) = 479896 + 0: The total amount of wall time = 652.372543 + 0: The maximum resident set size (KB) = 480164 Test 185 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_ras_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5973,14 +5973,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 831.440575 - 0: The maximum resident set size (KB) = 491304 + 0: The total amount of wall time = 825.272970 + 0: The maximum resident set size (KB) = 490756 Test 186 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6027,14 +6027,14 @@ Checking test 187 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 904.085838 - 0: The maximum resident set size (KB) = 1238904 + 0: The total amount of wall time = 903.043407 + 0: The maximum resident set size (KB) = 1236200 Test 187 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_flake_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6045,14 +6045,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1517.501027 - 0: The maximum resident set size (KB) = 527148 + 0: The total amount of wall time = 1593.320112 + 0: The maximum resident set size (KB) = 533572 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6099,14 +6099,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1484.142672 - 0: The maximum resident set size (KB) = 830880 + 0: The total amount of wall time = 1464.759448 + 0: The maximum resident set size (KB) = 828852 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6153,14 +6153,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1468.716875 - 0: The maximum resident set size (KB) = 833232 + 0: The total amount of wall time = 1436.267164 + 0: The maximum resident set size (KB) = 835388 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6207,14 +6207,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1340.451856 - 0: The maximum resident set size (KB) = 903456 + 0: The total amount of wall time = 1350.047737 + 0: The maximum resident set size (KB) = 900880 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6253,14 +6253,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 730.685953 - 0: The maximum resident set size (KB) = 546024 + 0: The total amount of wall time = 713.872011 + 0: The maximum resident set size (KB) = 547112 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6307,14 +6307,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1486.580297 - 0: The maximum resident set size (KB) = 830188 + 0: The total amount of wall time = 1455.796169 + 0: The maximum resident set size (KB) = 831828 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6361,14 +6361,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1433.308875 - 0: The maximum resident set size (KB) = 833172 + 0: The total amount of wall time = 1442.924657 + 0: The maximum resident set size (KB) = 833220 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_sfcdiff_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6407,14 +6407,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1075.271879 - 0: The maximum resident set size (KB) = 550848 + 0: The total amount of wall time = 1073.398157 + 0: The maximum resident set size (KB) = 545156 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6461,14 +6461,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.905662 - 0: The maximum resident set size (KB) = 829848 + 0: The total amount of wall time = 1461.240210 + 0: The maximum resident set size (KB) = 836788 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_gnu Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6515,14 +6515,14 @@ Checking test 197 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1470.533364 - 0: The maximum resident set size (KB) = 838380 + 0: The total amount of wall time = 1483.428544 + 0: The maximum resident set size (KB) = 844316 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6569,14 +6569,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1528.988610 - 0: The maximum resident set size (KB) = 893480 + 0: The total amount of wall time = 1515.092091 + 0: The maximum resident set size (KB) = 897000 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_decomp_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6623,42 +6623,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1419.142866 - 0: The maximum resident set size (KB) = 830924 + 0: The total amount of wall time = 1450.414259 + 0: The maximum resident set size (KB) = 827220 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1046.950988 - 0: The maximum resident set size (KB) = 548744 + 0: The total amount of wall time = 1072.140718 + 0: The maximum resident set size (KB) = 548616 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1092.498107 - 0: The maximum resident set size (KB) = 569864 + 0: The total amount of wall time = 1077.285284 + 0: The maximum resident set size (KB) = 569836 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_v1beta_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6705,14 +6705,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1472.254901 - 0: The maximum resident set size (KB) = 829848 + 0: The total amount of wall time = 1461.477136 + 0: The maximum resident set size (KB) = 828360 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6728,14 +6728,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 817.597108 - 0: The maximum resident set size (KB) = 659824 + 0: The total amount of wall time = 833.606832 + 0: The maximum resident set size (KB) = 660716 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6751,14 +6751,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 827.348052 - 0: The maximum resident set size (KB) = 616352 + 0: The total amount of wall time = 863.863281 + 0: The maximum resident set size (KB) = 616068 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6767,14 +6767,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1026.653843 - 0: The maximum resident set size (KB) = 660560 + 0: The total amount of wall time = 1077.125952 + 0: The maximum resident set size (KB) = 663820 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6783,14 +6783,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 780.794023 - 0: The maximum resident set size (KB) = 660524 + 0: The total amount of wall time = 840.376225 + 0: The maximum resident set size (KB) = 658708 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6806,274 +6806,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 759.814921 - 0: The maximum resident set size (KB) = 643088 + 0: The total amount of wall time = 787.686154 + 0: The maximum resident set size (KB) = 642372 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 443.662518 - 0: The maximum resident set size (KB) = 653508 + 0: The total amount of wall time = 456.372866 + 0: The maximum resident set size (KB) = 655724 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 461.848017 - 0: The maximum resident set size (KB) = 677576 + 0: The total amount of wall time = 474.387254 + 0: The maximum resident set size (KB) = 673124 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_diag_debug_gnu Checking test 210 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.010832 - 0: The maximum resident set size (KB) = 529792 + 0: The total amount of wall time = 123.235351 + 0: The maximum resident set size (KB) = 536796 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/regional_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_debug_gnu Checking test 211 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 710.929999 - 0: The maximum resident set size (KB) = 593292 + 0: The total amount of wall time = 661.056547 + 0: The maximum resident set size (KB) = 595668 Test 211 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_gnu Checking test 212 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.813148 - 0: The maximum resident set size (KB) = 842188 + 0: The total amount of wall time = 175.556749 + 0: The maximum resident set size (KB) = 843104 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_gnu Checking test 213 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.528942 - 0: The maximum resident set size (KB) = 839196 + 0: The total amount of wall time = 167.824643 + 0: The maximum resident set size (KB) = 842128 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_diag_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_diag_debug_gnu Checking test 214 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.940850 - 0: The maximum resident set size (KB) = 928104 + 0: The total amount of wall time = 210.543990 + 0: The maximum resident set size (KB) = 924084 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.335090 - 0: The maximum resident set size (KB) = 838900 + 0: The total amount of wall time = 277.213794 + 0: The maximum resident set size (KB) = 838908 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_progcld_thompson_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_progcld_thompson_debug_gnu Checking test 216 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.186192 - 0: The maximum resident set size (KB) = 841736 + 0: The total amount of wall time = 172.424400 + 0: The maximum resident set size (KB) = 842700 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_v1beta_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_debug_gnu Checking test 217 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.723910 - 0: The maximum resident set size (KB) = 835932 + 0: The total amount of wall time = 177.006485 + 0: The maximum resident set size (KB) = 839196 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_ras_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_debug_gnu Checking test 218 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.906283 - 0: The maximum resident set size (KB) = 482864 + 0: The total amount of wall time = 104.512706 + 0: The maximum resident set size (KB) = 494084 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_stochy_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.827474 - 0: The maximum resident set size (KB) = 477084 + 0: The total amount of wall time = 119.577000 + 0: The maximum resident set size (KB) = 479544 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_debug_p8_gnu Checking test 220 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.596835 - 0: The maximum resident set size (KB) = 1226220 + 0: The total amount of wall time = 123.010097 + 0: The maximum resident set size (KB) = 1232684 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 645.274524 - 0: The maximum resident set size (KB) = 669260 + 0: The total amount of wall time = 659.812619 + 0: The maximum resident set size (KB) = 673620 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 760.996758 - 0: The maximum resident set size (KB) = 678948 + 0: The total amount of wall time = 784.447801 + 0: The maximum resident set size (KB) = 664504 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 580.880486 - 0: The maximum resident set size (KB) = 656760 + 0: The total amount of wall time = 570.965874 + 0: The maximum resident set size (KB) = 659620 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_flake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_flake_debug_gnu Checking test 224 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.279492 - 0: The maximum resident set size (KB) = 841844 + 0: The total amount of wall time = 176.840556 + 0: The maximum resident set size (KB) = 843476 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_clm_lake_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_clm_lake_debug_gnu Checking test 225 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.773438 - 0: The maximum resident set size (KB) = 842548 + 0: The total amount of wall time = 195.614763 + 0: The maximum resident set size (KB) = 854000 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/control_wam_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.983024 - 0: The maximum resident set size (KB) = 201832 + 0: The total amount of wall time = 184.275557 + 0: The maximum resident set size (KB) = 200108 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7120,14 +7120,14 @@ Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1484.319456 - 0: The maximum resident set size (KB) = 686692 + 0: The total amount of wall time = 1474.439272 + 0: The maximum resident set size (KB) = 687512 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7174,14 +7174,14 @@ Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 748.540732 - 0: The maximum resident set size (KB) = 686908 + 0: The total amount of wall time = 744.415437 + 0: The maximum resident set size (KB) = 687320 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7228,14 +7228,14 @@ Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 747.085916 - 0: The maximum resident set size (KB) = 698324 + 0: The total amount of wall time = 747.430257 + 0: The maximum resident set size (KB) = 702860 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7282,14 +7282,14 @@ Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1376.953520 - 0: The maximum resident set size (KB) = 735564 + 0: The total amount of wall time = 1321.465994 + 0: The maximum resident set size (KB) = 735192 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7336,14 +7336,14 @@ Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 787.286784 - 0: The maximum resident set size (KB) = 735368 + 0: The total amount of wall time = 790.064937 + 0: The maximum resident set size (KB) = 731888 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7390,14 +7390,14 @@ Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.979900 - 0: The maximum resident set size (KB) = 693868 + 0: The total amount of wall time = 726.871347 + 0: The maximum resident set size (KB) = 688028 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7436,42 +7436,42 @@ Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1074.018370 - 0: The maximum resident set size (KB) = 520664 + 0: The total amount of wall time = 1094.569709 + 0: The maximum resident set size (KB) = 518532 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 369.667208 - 0: The maximum resident set size (KB) = 513180 + 0: The total amount of wall time = 360.075921 + 0: The maximum resident set size (KB) = 513492 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 371.587898 - 0: The maximum resident set size (KB) = 539100 + 0: The total amount of wall time = 367.937458 + 0: The maximum resident set size (KB) = 537272 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7487,14 +7487,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 785.628622 - 0: The maximum resident set size (KB) = 578928 + 0: The total amount of wall time = 853.054151 + 0: The maximum resident set size (KB) = 581076 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7507,41 +7507,41 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 763.251315 - 0: The maximum resident set size (KB) = 576596 + 0: The total amount of wall time = 777.150914 + 0: The maximum resident set size (KB) = 580340 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 411.717743 - 0: The maximum resident set size (KB) = 572156 + 0: The total amount of wall time = 388.067962 + 0: The maximum resident set size (KB) = 574156 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 412.868197 - 0: The maximum resident set size (KB) = 606432 + 0: The total amount of wall time = 406.780269 + 0: The maximum resident set size (KB) = 602120 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_dyn64_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7588,56 +7588,56 @@ Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1078.239878 - 0: The maximum resident set size (KB) = 715476 + 0: The total amount of wall time = 1076.426149 + 0: The maximum resident set size (KB) = 710972 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_dyn32_phy32_gnu Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.389101 - 0: The maximum resident set size (KB) = 703520 + 0: The total amount of wall time = 175.063489 + 0: The maximum resident set size (KB) = 701900 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.628469 - 0: The maximum resident set size (KB) = 703612 + 0: The total amount of wall time = 167.809446 + 0: The maximum resident set size (KB) = 699040 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_debug_gnu Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.656209 - 0: The maximum resident set size (KB) = 723384 + 0: The total amount of wall time = 204.019683 + 0: The maximum resident set size (KB) = 720160 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7702,14 +7702,14 @@ Checking test 244 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1744.419820 - 0: The maximum resident set size (KB) = 1438408 + 0: The total amount of wall time = 1725.008612 + 0: The maximum resident set size (KB) = 1431616 -Test 244 cpld_control_p8_gnu PASS Tries: 2 +Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7771,14 +7771,14 @@ Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1214.710095 - 0: The maximum resident set size (KB) = 1331812 + 0: The total amount of wall time = 1220.782643 + 0: The maximum resident set size (KB) = 1333568 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_debug_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,14 +7831,14 @@ Checking test 246 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1188.436814 - 0: The maximum resident set size (KB) = 1446788 + 0: The total amount of wall time = 817.318550 + 0: The maximum resident set size (KB) = 1445288 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_control_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7902,14 +7902,14 @@ Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1722.191423 - 0: The maximum resident set size (KB) = 1305324 + 0: The total amount of wall time = 1712.162864 + 0: The maximum resident set size (KB) = 1307972 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7961,23 +7961,25 @@ Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 900.266446 - 0: The maximum resident set size (KB) = 1300704 + 0: The total amount of wall time = 888.317547 + 0: The maximum resident set size (KB) = 1305288 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_260733/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_cfsr_gnu Checking test 249 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 178.914713 - 0: The maximum resident set size (KB) = 672912 + 0: The total amount of wall time = 174.534075 + 0: The maximum resident set size (KB) = 668352 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL +Fri Aug 18 23:45:25 UTC 2023 +Elapsed time: 02h:35m:19s. Have a nice day! From 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Sun, 20 Aug 2023 12:32:08 -0400 Subject: [PATCH 13/20] Add new BL_DATE --- tests/bl_date.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index fd31d70529..25cc22a150 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1,2 @@ -export BL_DATE=20230816 +export BL_DATE=20230818 From e09d1cbaa94000eaae44e2b991e8aca641dea9e2 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Mon, 21 Aug 2023 09:37:40 -0400 Subject: [PATCH 14/20] add hera RT log: passed --- tests/logs/RegressionTests_hera.log | 2110 +++++++++++++-------------- 1 file changed, 1055 insertions(+), 1055 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 9f6a88504d..8527d9502a 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Fri Aug 18 21:10:07 UTC 2023 +Mon Aug 21 00:29:42 UTC 2023 Start Regression test -Testing UFSWM Hash: 6b63e02e97b3471aa9296388e05446f40d876fc5 +Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1403-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/tanya-fix-20230724) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/develop-10-g0d9066e) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 190 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 179 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 185 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 284 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 544 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 181 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 547 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 524 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 552 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 559 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 552 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 526 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 119 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 194 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 121 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 587 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 208 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 601 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 584 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 221 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 137 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 258 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 884 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_debug_dyn32_intel elapsed time 229 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 179 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 176 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 175 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 275 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 533 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 550 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 520 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 537 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 550 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 541 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 120 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 567 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 192 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 599 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 224 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 638 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 214 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 251 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 896 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 650 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_debug_gnu elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 248 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 646 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 991 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 675 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile wam_debug_gnu elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_mixedmode_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.507314 - 0: The maximum resident set size (KB) = 3136876 + 0: The total amount of wall time = 310.687148 + 0: The maximum resident set size (KB) = 3136784 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 224.313267 - 0: The maximum resident set size (KB) = 1674288 + 0: The total amount of wall time = 218.581977 + 0: The maximum resident set size (KB) = 1697256 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.372977 - 0: The maximum resident set size (KB) = 3181172 + 0: The total amount of wall time = 341.506593 + 0: The maximum resident set size (KB) = 3191096 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.641485 - 0: The maximum resident set size (KB) = 3058828 + 0: The total amount of wall time = 194.279821 + 0: The maximum resident set size (KB) = 3058640 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.567786 - 0: The maximum resident set size (KB) = 3159824 + 0: The total amount of wall time = 342.867270 + 0: The maximum resident set size (KB) = 3195140 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.711625 - 0: The maximum resident set size (KB) = 3075276 + 0: The total amount of wall time = 200.988858 + 0: The maximum resident set size (KB) = 3024284 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.305106 - 0: The maximum resident set size (KB) = 3520188 + 0: The total amount of wall time = 323.843033 + 0: The maximum resident set size (KB) = 3530356 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.200588 - 0: The maximum resident set size (KB) = 3170664 + 0: The total amount of wall time = 346.773111 + 0: The maximum resident set size (KB) = 3178380 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 288.625291 - 0: The maximum resident set size (KB) = 2975000 + 0: The total amount of wall time = 307.433938 + 0: The maximum resident set size (KB) = 3034112 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.152130 - 0: The maximum resident set size (KB) = 3176232 + 0: The total amount of wall time = 343.353963 + 0: The maximum resident set size (KB) = 3187700 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 592.343406 - 0: The maximum resident set size (KB) = 3305432 + 0: The total amount of wall time = 588.435302 + 0: The maximum resident set size (KB) = 3305500 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 379.612189 - 0: The maximum resident set size (KB) = 3205876 + 0: The total amount of wall time = 376.217424 + 0: The maximum resident set size (KB) = 3202752 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 656.380386 - 0: The maximum resident set size (KB) = 4090604 + 0: The total amount of wall time = 668.775811 + 0: The maximum resident set size (KB) = 4092264 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.158440 - 0: The maximum resident set size (KB) = 4013784 + 0: The total amount of wall time = 416.386644 + 0: The maximum resident set size (KB) = 3976516 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.939897 - 0: The maximum resident set size (KB) = 1722484 + 0: The total amount of wall time = 266.205716 + 0: The maximum resident set size (KB) = 1728256 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.305095 - 0: The maximum resident set size (KB) = 1765164 + 0: The total amount of wall time = 261.067459 + 0: The maximum resident set size (KB) = 1765880 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 514.732317 - 0: The maximum resident set size (KB) = 3230664 + 0: The total amount of wall time = 516.051683 + 0: The maximum resident set size (KB) = 3226052 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.630477 - 0: The maximum resident set size (KB) = 1740160 + 0: The total amount of wall time = 346.958669 + 0: The maximum resident set size (KB) = 1737132 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.487821 - 0: The maximum resident set size (KB) = 1752500 + 0: The total amount of wall time = 263.918066 + 0: The maximum resident set size (KB) = 1759824 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 595.275976 - 0: The maximum resident set size (KB) = 2805824 + 0: The total amount of wall time = 584.147431 + 0: The maximum resident set size (KB) = 2803396 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.549633 - 0: The maximum resident set size (KB) = 3174280 + 0: The total amount of wall time = 320.585864 + 0: The maximum resident set size (KB) = 3172540 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1195.543529 - 0: The maximum resident set size (KB) = 1763192 + 0: The total amount of wall time = 1195.412734 + 0: The maximum resident set size (KB) = 1756224 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 559.996393 - 0: The maximum resident set size (KB) = 1035188 + 0: The total amount of wall time = 557.614000 + 0: The maximum resident set size (KB) = 1029980 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1082.615938 - 0: The maximum resident set size (KB) = 1649876 + 0: The total amount of wall time = 1082.208973 + 0: The maximum resident set size (KB) = 1655340 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1341.579442 - 0: The maximum resident set size (KB) = 1702744 + 0: The total amount of wall time = 1351.111800 + 0: The maximum resident set size (KB) = 1707408 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.432434 - 0: The maximum resident set size (KB) = 686920 + 0: The total amount of wall time = 185.276030 + 0: The maximum resident set size (KB) = 674216 Test 026 control_flake_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,36 +1719,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.450465 - 0: The maximum resident set size (KB) = 635084 + 0: The total amount of wall time = 130.731499 + 0: The maximum resident set size (KB) = 630368 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.724323 - 0: The maximum resident set size (KB) = 636148 + 0: The total amount of wall time = 140.128185 + 0: The maximum resident set size (KB) = 642912 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.335973 - 0: The maximum resident set size (KB) = 634140 + 0: The total amount of wall time = 135.413777 + 0: The maximum resident set size (KB) = 644012 Test 029 control_latlon_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.888733 - 0: The maximum resident set size (KB) = 635856 + 0: The total amount of wall time = 136.949430 + 0: The maximum resident set size (KB) = 634168 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.585867 -0: The maximum resident set size (KB) = 827616 +0: The total amount of wall time = 369.317733 +0: The maximum resident set size (KB) = 818200 Test 031 control_c48_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.893708 - 0: The maximum resident set size (KB) = 787248 + 0: The total amount of wall time = 528.970434 + 0: The maximum resident set size (KB) = 779748 Test 032 control_c192_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.794390 - 0: The maximum resident set size (KB) = 1247816 + 0: The total amount of wall time = 531.527998 + 0: The maximum resident set size (KB) = 1284948 Test 033 control_c384_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.986219 - 0: The maximum resident set size (KB) = 1372384 + 0: The total amount of wall time = 490.531963 + 0: The maximum resident set size (KB) = 1394088 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.583673 - 0: The maximum resident set size (KB) = 645080 + 0: The total amount of wall time = 88.917472 + 0: The maximum resident set size (KB) = 632160 Test 035 control_stochy_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.857219 - 0: The maximum resident set size (KB) = 498036 + 0: The total amount of wall time = 48.385172 + 0: The maximum resident set size (KB) = 488404 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.760329 - 0: The maximum resident set size (KB) = 638648 + 0: The total amount of wall time = 81.792668 + 0: The maximum resident set size (KB) = 640816 Test 037 control_lndp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.220357 - 0: The maximum resident set size (KB) = 639648 + 0: The total amount of wall time = 137.291214 + 0: The maximum resident set size (KB) = 637556 Test 038 control_iovr4_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.338302 - 0: The maximum resident set size (KB) = 638908 + 0: The total amount of wall time = 137.156601 + 0: The maximum resident set size (KB) = 623404 Test 039 control_iovr5_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.788078 - 0: The maximum resident set size (KB) = 1609776 + 0: The total amount of wall time = 168.428318 + 0: The maximum resident set size (KB) = 1607644 Test 040 control_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.013702 - 0: The maximum resident set size (KB) = 851356 + 0: The total amount of wall time = 86.833360 + 0: The maximum resident set size (KB) = 878896 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.689365 - 0: The maximum resident set size (KB) = 1612280 + 0: The total amount of wall time = 168.875693 + 0: The maximum resident set size (KB) = 1616764 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.414216 - 0: The maximum resident set size (KB) = 874856 + 0: The total amount of wall time = 89.500222 + 0: The maximum resident set size (KB) = 871364 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.282877 - 0: The maximum resident set size (KB) = 1593648 + 0: The total amount of wall time = 176.462286 + 0: The maximum resident set size (KB) = 1591152 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.114407 - 0: The maximum resident set size (KB) = 1685352 + 0: The total amount of wall time = 155.432414 + 0: The maximum resident set size (KB) = 1688808 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 315.710697 - 0: The maximum resident set size (KB) = 1592256 + 0: The total amount of wall time = 314.992533 + 0: The maximum resident set size (KB) = 1606460 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.361911 - 0: The maximum resident set size (KB) = 1667340 + 0: The total amount of wall time = 225.417206 + 0: The maximum resident set size (KB) = 1670352 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.496089 - 0: The maximum resident set size (KB) = 1592884 + 0: The total amount of wall time = 175.354142 + 0: The maximum resident set size (KB) = 1597360 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.758078 - 0: The maximum resident set size (KB) = 1608576 + 0: The total amount of wall time = 192.313870 + 0: The maximum resident set size (KB) = 1624120 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.287891 - 0: The maximum resident set size (KB) = 879592 + 0: The total amount of wall time = 291.061244 + 0: The maximum resident set size (KB) = 881500 Test 050 regional_control_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.915477 - 0: The maximum resident set size (KB) = 880164 + 0: The total amount of wall time = 147.424449 + 0: The maximum resident set size (KB) = 873992 Test 051 regional_restart_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.914675 - 0: The maximum resident set size (KB) = 883360 + 0: The total amount of wall time = 294.595198 + 0: The maximum resident set size (KB) = 879876 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.397989 - 0: The maximum resident set size (KB) = 873088 + 0: The total amount of wall time = 147.604717 + 0: The maximum resident set size (KB) = 869084 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.710881 - 0: The maximum resident set size (KB) = 873112 + 0: The total amount of wall time = 310.130849 + 0: The maximum resident set size (KB) = 851576 Test 054 regional_decomp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 176.265154 - 0: The maximum resident set size (KB) = 857760 + 0: The total amount of wall time = 175.357324 + 0: The maximum resident set size (KB) = 867176 Test 055 regional_2threads_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 294.734556 - 0: The maximum resident set size (KB) = 857172 + 0: The total amount of wall time = 293.182072 + 0: The maximum resident set size (KB) = 857896 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.149154 - 0: The maximum resident set size (KB) = 874508 + 0: The total amount of wall time = 285.106394 + 0: The maximum resident set size (KB) = 876652 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.151583 - 0: The maximum resident set size (KB) = 882092 + 0: The total amount of wall time = 292.111727 + 0: The maximum resident set size (KB) = 881652 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.905795 - 0: The maximum resident set size (KB) = 621112 + 0: The total amount of wall time = 371.786853 + 0: The maximum resident set size (KB) = 623496 Test 059 regional_wofs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.211368 - 0: The maximum resident set size (KB) = 1060540 + 0: The total amount of wall time = 448.765082 + 0: The maximum resident set size (KB) = 1062220 Test 060 rap_control_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 231.966885 - 0: The maximum resident set size (KB) = 1189552 + 0: The total amount of wall time = 228.739711 + 0: The maximum resident set size (KB) = 1195656 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.881165 - 0: The maximum resident set size (KB) = 1012488 + 0: The total amount of wall time = 464.966170 + 0: The maximum resident set size (KB) = 1007900 Test 062 rap_decomp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.842170 - 0: The maximum resident set size (KB) = 1147084 + 0: The total amount of wall time = 420.718224 + 0: The maximum resident set size (KB) = 1148480 Test 063 rap_2threads_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.548843 - 0: The maximum resident set size (KB) = 964412 + 0: The total amount of wall time = 226.709869 + 0: The maximum resident set size (KB) = 957456 Test 064 rap_restart_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.798233 - 0: The maximum resident set size (KB) = 1071460 + 0: The total amount of wall time = 450.784032 + 0: The maximum resident set size (KB) = 1059540 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.233968 - 0: The maximum resident set size (KB) = 1004912 + 0: The total amount of wall time = 471.695126 + 0: The maximum resident set size (KB) = 1008124 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 331.151425 - 0: The maximum resident set size (KB) = 988748 + 0: The total amount of wall time = 331.130468 + 0: The maximum resident set size (KB) = 994840 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 437.125616 - 0: The maximum resident set size (KB) = 1054548 + 0: The total amount of wall time = 433.347477 + 0: The maximum resident set size (KB) = 1059436 Test 068 hrrr_control_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.226169 - 0: The maximum resident set size (KB) = 1073436 + 0: The total amount of wall time = 426.113283 + 0: The maximum resident set size (KB) = 1075860 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.964735 - 0: The maximum resident set size (KB) = 1004736 + 0: The total amount of wall time = 448.947987 + 0: The maximum resident set size (KB) = 999324 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.094246 - 0: The maximum resident set size (KB) = 1077356 + 0: The total amount of wall time = 401.355989 + 0: The maximum resident set size (KB) = 1084592 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.942743 - 0: The maximum resident set size (KB) = 984492 + 0: The total amount of wall time = 320.077907 + 0: The maximum resident set size (KB) = 982824 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 323.570522 - 0: The maximum resident set size (KB) = 1013840 + 0: The total amount of wall time = 321.762171 + 0: The maximum resident set size (KB) = 1020704 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.446097 - 0: The maximum resident set size (KB) = 1058352 + 0: The total amount of wall time = 444.209083 + 0: The maximum resident set size (KB) = 1033880 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.589644 - 0: The maximum resident set size (KB) = 691352 + 0: The total amount of wall time = 522.151374 + 0: The maximum resident set size (KB) = 695340 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.995094 - 0: The maximum resident set size (KB) = 758648 + 0: The total amount of wall time = 513.984310 + 0: The maximum resident set size (KB) = 744240 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3401,14 +3401,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 149.172514 - 0: The maximum resident set size (KB) = 1039596 + 0: The total amount of wall time = 148.867610 + 0: The maximum resident set size (KB) = 1038600 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 145.653522 - 0: The maximum resident set size (KB) = 979076 + 0: The total amount of wall time = 144.870852 + 0: The maximum resident set size (KB) = 979508 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3440,14 +3440,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.734067 - 0: The maximum resident set size (KB) = 942736 + 0: The total amount of wall time = 91.877010 + 0: The maximum resident set size (KB) = 948776 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 134.636951 - 0: The maximum resident set size (KB) = 992140 + 0: The total amount of wall time = 132.542729 + 0: The maximum resident set size (KB) = 979740 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3479,38 +3479,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.713033 - 0: The maximum resident set size (KB) = 1039952 + 0: The total amount of wall time = 151.052777 + 0: The maximum resident set size (KB) = 1036524 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 85.858447 - 0: The maximum resident set size (KB) = 1035868 + 0: The total amount of wall time = 83.657018 + 0: The maximum resident set size (KB) = 1035856 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.915585 - 0: The maximum resident set size (KB) = 950924 + 0: The total amount of wall time = 88.081799 + 0: The maximum resident set size (KB) = 960956 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3521,14 +3521,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.448698 - 0: The maximum resident set size (KB) = 724408 + 0: The total amount of wall time = 338.511705 + 0: The maximum resident set size (KB) = 718984 Test 084 control_csawmg_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3539,14 +3539,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.211265 - 0: The maximum resident set size (KB) = 729076 + 0: The total amount of wall time = 329.268368 + 0: The maximum resident set size (KB) = 720688 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3557,26 +3557,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.840162 - 0: The maximum resident set size (KB) = 728364 + 0: The total amount of wall time = 183.905604 + 0: The maximum resident set size (KB) = 728408 Test 086 control_ras_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.278075 - 0: The maximum resident set size (KB) = 648240 + 0: The total amount of wall time = 111.730408 + 0: The maximum resident set size (KB) = 646520 Test 087 control_wam_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3623,14 +3623,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.390137 - 0: The maximum resident set size (KB) = 1591720 + 0: The total amount of wall time = 153.853831 + 0: The maximum resident set size (KB) = 1608328 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3641,56 +3641,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.091782 - 0: The maximum resident set size (KB) = 879664 + 0: The total amount of wall time = 265.048900 + 0: The maximum resident set size (KB) = 879112 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 843.807988 - 0: The maximum resident set size (KB) = 1067716 + 0: The total amount of wall time = 843.107308 + 0: The maximum resident set size (KB) = 1049184 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 469.375827 - 0: The maximum resident set size (KB) = 969352 + 0: The total amount of wall time = 470.990482 + 0: The maximum resident set size (KB) = 947924 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 750.477475 - 0: The maximum resident set size (KB) = 1026040 + 0: The total amount of wall time = 743.514293 + 0: The maximum resident set size (KB) = 1022712 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3717,348 +3717,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 146.514441 - 0: The maximum resident set size (KB) = 791616 + 0: The total amount of wall time = 142.015569 + 0: The maximum resident set size (KB) = 791972 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.429655 - 0: The maximum resident set size (KB) = 794352 + 0: The total amount of wall time = 144.048024 + 0: The maximum resident set size (KB) = 795928 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.310394 - 0: The maximum resident set size (KB) = 797260 + 0: The total amount of wall time = 166.555869 + 0: The maximum resident set size (KB) = 795580 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.966065 - 0: The maximum resident set size (KB) = 798956 + 0: The total amount of wall time = 148.701303 + 0: The maximum resident set size (KB) = 793544 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.635517 - 0: The maximum resident set size (KB) = 842128 + 0: The total amount of wall time = 223.614865 + 0: The maximum resident set size (KB) = 842240 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.515083 - 0: The maximum resident set size (KB) = 841032 + 0: The total amount of wall time = 225.693762 + 0: The maximum resident set size (KB) = 838424 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.496414 - 0: The maximum resident set size (KB) = 778176 + 0: The total amount of wall time = 149.329198 + 0: The maximum resident set size (KB) = 812980 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.377312 - 0: The maximum resident set size (KB) = 854092 + 0: The total amount of wall time = 152.753818 + 0: The maximum resident set size (KB) = 822044 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.111761 - 0: The maximum resident set size (KB) = 1585848 + 0: The total amount of wall time = 163.959855 + 0: The maximum resident set size (KB) = 1618640 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 980.082573 - 0: The maximum resident set size (KB) = 861068 + 0: The total amount of wall time = 982.360134 + 0: The maximum resident set size (KB) = 891032 Test 102 regional_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.871721 - 0: The maximum resident set size (KB) = 1179976 + 0: The total amount of wall time = 270.292561 + 0: The maximum resident set size (KB) = 1179712 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.697068 - 0: The maximum resident set size (KB) = 1176720 + 0: The total amount of wall time = 257.473648 + 0: The maximum resident set size (KB) = 1182476 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.756013 - 0: The maximum resident set size (KB) = 1189728 + 0: The total amount of wall time = 273.925397 + 0: The maximum resident set size (KB) = 1185236 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.542812 - 0: The maximum resident set size (KB) = 1259608 + 0: The total amount of wall time = 289.412070 + 0: The maximum resident set size (KB) = 1257492 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.318612 - 0: The maximum resident set size (KB) = 1155244 + 0: The total amount of wall time = 277.898676 + 0: The maximum resident set size (KB) = 1184852 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.927964 - 0: The maximum resident set size (KB) = 1183096 + 0: The total amount of wall time = 277.363937 + 0: The maximum resident set size (KB) = 1179472 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.998101 - 0: The maximum resident set size (KB) = 1179296 + 0: The total amount of wall time = 272.197199 + 0: The maximum resident set size (KB) = 1176852 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.617701 - 0: The maximum resident set size (KB) = 1176572 + 0: The total amount of wall time = 273.731259 + 0: The maximum resident set size (KB) = 1179240 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.544729 - 0: The maximum resident set size (KB) = 1172476 + 0: The total amount of wall time = 263.535131 + 0: The maximum resident set size (KB) = 1176416 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.555234 - 0: The maximum resident set size (KB) = 1174044 + 0: The total amount of wall time = 271.599580 + 0: The maximum resident set size (KB) = 1180124 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 455.450491 - 0: The maximum resident set size (KB) = 1178200 + 0: The total amount of wall time = 442.524354 + 0: The maximum resident set size (KB) = 1176176 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.292115 - 0: The maximum resident set size (KB) = 1172584 + 0: The total amount of wall time = 268.682951 + 0: The maximum resident set size (KB) = 1180872 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.503346 - 0: The maximum resident set size (KB) = 1187580 + 0: The total amount of wall time = 350.957169 + 0: The maximum resident set size (KB) = 1170864 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.082207 - 0: The maximum resident set size (KB) = 1178488 + 0: The total amount of wall time = 274.160804 + 0: The maximum resident set size (KB) = 1150180 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.456005 - 0: The maximum resident set size (KB) = 512480 + 0: The total amount of wall time = 271.395808 + 0: The maximum resident set size (KB) = 531392 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4069,14 +4069,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 219.813960 - 0: The maximum resident set size (KB) = 1091636 + 0: The total amount of wall time = 217.921929 + 0: The maximum resident set size (KB) = 1056048 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4123,14 +4123,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.989191 - 0: The maximum resident set size (KB) = 1007160 + 0: The total amount of wall time = 371.930326 + 0: The maximum resident set size (KB) = 1007900 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4177,14 +4177,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.274706 - 0: The maximum resident set size (KB) = 953356 + 0: The total amount of wall time = 192.841786 + 0: The maximum resident set size (KB) = 962056 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4231,14 +4231,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.676836 - 0: The maximum resident set size (KB) = 969176 + 0: The total amount of wall time = 189.598376 + 0: The maximum resident set size (KB) = 970104 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4285,14 +4285,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.263223 - 0: The maximum resident set size (KB) = 1030076 + 0: The total amount of wall time = 346.266088 + 0: The maximum resident set size (KB) = 1035516 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4339,14 +4339,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.701672 - 0: The maximum resident set size (KB) = 933948 + 0: The total amount of wall time = 177.511219 + 0: The maximum resident set size (KB) = 941524 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.746516 - 0: The maximum resident set size (KB) = 902592 + 0: The total amount of wall time = 199.755163 + 0: The maximum resident set size (KB) = 894956 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4439,42 +4439,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.221286 - 0: The maximum resident set size (KB) = 956296 + 0: The total amount of wall time = 273.221869 + 0: The maximum resident set size (KB) = 953752 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.051775 - 0: The maximum resident set size (KB) = 857420 + 0: The total amount of wall time = 98.887413 + 0: The maximum resident set size (KB) = 856272 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.006273 - 0: The maximum resident set size (KB) = 884596 + 0: The total amount of wall time = 101.926718 + 0: The maximum resident set size (KB) = 881156 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 115.584829 - 0: The maximum resident set size (KB) = 910008 + 0: The total amount of wall time = 113.647105 + 0: The maximum resident set size (KB) = 906164 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4513,38 +4513,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 110.942019 - 0: The maximum resident set size (KB) = 933164 + 0: The total amount of wall time = 109.891182 + 0: The maximum resident set size (KB) = 916812 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.086825 - 0: The maximum resident set size (KB) = 903896 + 0: The total amount of wall time = 64.176361 + 0: The maximum resident set size (KB) = 902732 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 75.257808 - 0: The maximum resident set size (KB) = 969896 + 0: The total amount of wall time = 70.786285 + 0: The maximum resident set size (KB) = 960700 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4591,81 +4591,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.774782 - 0: The maximum resident set size (KB) = 968228 + 0: The total amount of wall time = 237.488100 + 0: The maximum resident set size (KB) = 962224 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.417029 - 0: The maximum resident set size (KB) = 1060352 + 0: The total amount of wall time = 267.265678 + 0: The maximum resident set size (KB) = 1067088 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.686467 - 0: The maximum resident set size (KB) = 1060868 + 0: The total amount of wall time = 263.490195 + 0: The maximum resident set size (KB) = 1027168 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.386311 - 0: The maximum resident set size (KB) = 1095364 + 0: The total amount of wall time = 277.078319 + 0: The maximum resident set size (KB) = 1092380 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 223.176118 - 0: The maximum resident set size (KB) = 1062216 + 0: The total amount of wall time = 223.664077 + 0: The maximum resident set size (KB) = 1063352 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 333.606247 - 0: The maximum resident set size (KB) = 1436000 + 0: The total amount of wall time = 340.383798 + 0: The maximum resident set size (KB) = 1432172 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4674,14 +4674,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 382.538117 - 0: The maximum resident set size (KB) = 1243712 + 0: The total amount of wall time = 375.550443 + 0: The maximum resident set size (KB) = 1243456 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,14 +4690,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 740.624175 - 0: The maximum resident set size (KB) = 1238616 + 0: The total amount of wall time = 742.301933 + 0: The maximum resident set size (KB) = 1272336 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 848.601831 - 0: The maximum resident set size (KB) = 1283240 + 0: The total amount of wall time = 840.302729 + 0: The maximum resident set size (KB) = 1286444 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 300.360485 - 0: The maximum resident set size (KB) = 517624 + 0: The total amount of wall time = 297.268833 + 0: The maximum resident set size (KB) = 522936 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 314.989680 - 0: The maximum resident set size (KB) = 493836 + 0: The total amount of wall time = 316.947982 + 0: The maximum resident set size (KB) = 455516 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4782,14 +4782,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 340.004121 - 0: The maximum resident set size (KB) = 523132 + 0: The total amount of wall time = 342.286312 + 0: The maximum resident set size (KB) = 519924 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4836,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 137.612374 - 0: The maximum resident set size (KB) = 362476 + 0: The total amount of wall time = 139.713732 + 0: The maximum resident set size (KB) = 361192 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4890,14 +4890,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 146.711335 - 0: The maximum resident set size (KB) = 364372 + 0: The total amount of wall time = 142.814174 + 0: The maximum resident set size (KB) = 366340 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 386.669093 - 0: The maximum resident set size (KB) = 434180 + 0: The total amount of wall time = 397.737036 + 0: The maximum resident set size (KB) = 440604 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 430.654645 - 0: The maximum resident set size (KB) = 458876 + 0: The total amount of wall time = 422.344476 + 0: The maximum resident set size (KB) = 479244 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,14 +5084,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 193.228601 - 0: The maximum resident set size (KB) = 529656 + 0: The total amount of wall time = 192.165531 + 0: The maximum resident set size (KB) = 529336 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5113,14 +5113,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 180.091346 - 0: The maximum resident set size (KB) = 529456 + 0: The total amount of wall time = 178.914650 + 0: The maximum resident set size (KB) = 535752 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5142,14 +5142,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 201.417583 - 0: The maximum resident set size (KB) = 515132 + 0: The total amount of wall time = 194.445531 + 0: The maximum resident set size (KB) = 520236 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5158,42 +5158,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.097086 - 0: The maximum resident set size (KB) = 575068 + 0: The total amount of wall time = 219.117711 + 0: The maximum resident set size (KB) = 573300 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 55.304900 - 0: The maximum resident set size (KB) = 375868 + 0: The total amount of wall time = 54.953737 + 0: The maximum resident set size (KB) = 379228 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 712.987662 - 0: The maximum resident set size (KB) = 592788 + 0: The total amount of wall time = 711.854257 + 0: The maximum resident set size (KB) = 595572 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,14 +5204,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 480.147701 - 0: The maximum resident set size (KB) = 673580 + 0: The total amount of wall time = 477.374748 + 0: The maximum resident set size (KB) = 669400 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 343.095035 - 0: The maximum resident set size (KB) = 1242544 + 0: The total amount of wall time = 364.879856 + 0: The maximum resident set size (KB) = 1247456 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5234,131 +5234,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 344.034112 - 0: The maximum resident set size (KB) = 1222888 + 0: The total amount of wall time = 348.170720 + 0: The maximum resident set size (KB) = 1199748 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.410087 - 0: The maximum resident set size (KB) = 1207464 + 0: The total amount of wall time = 953.373603 + 0: The maximum resident set size (KB) = 1205280 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.727767 - 0: The maximum resident set size (KB) = 1100168 + 0: The total amount of wall time = 156.747033 + 0: The maximum resident set size (KB) = 1101800 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.577273 - 0: The maximum resident set size (KB) = 1060888 + 0: The total amount of wall time = 97.996738 + 0: The maximum resident set size (KB) = 1056164 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.196740 - 0: The maximum resident set size (KB) = 998904 + 0: The total amount of wall time = 149.210263 + 0: The maximum resident set size (KB) = 999972 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.275444 - 0: The maximum resident set size (KB) = 980500 + 0: The total amount of wall time = 153.103440 + 0: The maximum resident set size (KB) = 987900 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.643299 - 0: The maximum resident set size (KB) = 1001400 + 0: The total amount of wall time = 149.584221 + 0: The maximum resident set size (KB) = 986696 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.164148 - 0: The maximum resident set size (KB) = 1103440 + 0: The total amount of wall time = 150.032391 + 0: The maximum resident set size (KB) = 1108932 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.123659 - 0: The maximum resident set size (KB) = 1102912 + 0: The total amount of wall time = 155.856909 + 0: The maximum resident set size (KB) = 1101900 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.347473 - 0: The maximum resident set size (KB) = 988176 + 0: The total amount of wall time = 145.514163 + 0: The maximum resident set size (KB) = 991404 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5367,14 +5367,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 413.517044 - 0: The maximum resident set size (KB) = 1010488 + 0: The total amount of wall time = 399.480308 + 0: The maximum resident set size (KB) = 1018044 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5383,77 +5383,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 437.369929 - 0: The maximum resident set size (KB) = 999564 + 0: The total amount of wall time = 400.041960 + 0: The maximum resident set size (KB) = 1014396 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.933180 - 0: The maximum resident set size (KB) = 1099468 + 0: The total amount of wall time = 151.247109 + 0: The maximum resident set size (KB) = 1099440 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 245.849488 - 0: The maximum resident set size (KB) = 2393040 + 0: The total amount of wall time = 228.715277 + 0: The maximum resident set size (KB) = 2440992 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 244.698386 - 0: The maximum resident set size (KB) = 2431860 + 0: The total amount of wall time = 237.492076 + 0: The maximum resident set size (KB) = 2433096 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 365.046697 - 0: The maximum resident set size (KB) = 1008016 + 0: The total amount of wall time = 356.274866 + 0: The maximum resident set size (KB) = 1029512 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.925428 - 0: The maximum resident set size (KB) = 1106256 + 0: The total amount of wall time = 152.231640 + 0: The maximum resident set size (KB) = 1096016 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5462,14 +5462,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.154948 - 0: The maximum resident set size (KB) = 242076 + 0: The total amount of wall time = 6.126691 + 0: The maximum resident set size (KB) = 246448 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5478,14 +5478,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.154117 - 0: The maximum resident set size (KB) = 245984 + 0: The total amount of wall time = 9.979660 + 0: The maximum resident set size (KB) = 246880 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5570,14 +5570,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 206.311496 - 0: The maximum resident set size (KB) = 1610184 + 0: The total amount of wall time = 207.435942 + 0: The maximum resident set size (KB) = 1607312 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5620,14 +5620,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 97.443869 - 0: The maximum resident set size (KB) = 1600496 + 0: The total amount of wall time = 93.302260 + 0: The maximum resident set size (KB) = 1637048 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.926346 - 0: The maximum resident set size (KB) = 658976 + 0: The total amount of wall time = 88.284181 + 0: The maximum resident set size (KB) = 661304 Test 177 control_atmwav_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5722,14 +5722,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.099340 - 0: The maximum resident set size (KB) = 2972552 + 0: The total amount of wall time = 230.656392 + 0: The maximum resident set size (KB) = 2993092 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5773,14 +5773,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.269164 - 0: The maximum resident set size (KB) = 3046796 + 0: The total amount of wall time = 284.561735 + 0: The maximum resident set size (KB) = 3055480 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5824,14 +5824,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.232269 - 0: The maximum resident set size (KB) = 3058184 + 0: The total amount of wall time = 291.559990 + 0: The maximum resident set size (KB) = 3062000 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_atmaq_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5847,14 +5847,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 648.147656 - 0: The maximum resident set size (KB) = 2359984 + 0: The total amount of wall time = 651.585774 + 0: The maximum resident set size (KB) = 2284972 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5868,14 +5868,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1216.142729 - 0: The maximum resident set size (KB) = 2180008 + 0: The total amount of wall time = 1201.660842 + 0: The maximum resident set size (KB) = 2085008 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_atmaq_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5891,14 +5891,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 553.985113 - 0: The maximum resident set size (KB) = 2340488 + 0: The total amount of wall time = 616.670196 + 0: The maximum resident set size (KB) = 2271876 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5937,14 +5937,14 @@ Checking test 184 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 687.961862 -0: The maximum resident set size (KB) = 706500 +0: The total amount of wall time = 685.750698 +0: The maximum resident set size (KB) = 707568 Test 184 control_c48_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5955,14 +5955,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 652.372543 - 0: The maximum resident set size (KB) = 480164 + 0: The total amount of wall time = 648.305989 + 0: The maximum resident set size (KB) = 485340 Test 185 control_stochy_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5973,14 +5973,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 825.272970 - 0: The maximum resident set size (KB) = 490756 + 0: The total amount of wall time = 814.322900 + 0: The maximum resident set size (KB) = 492088 Test 186 control_ras_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6027,14 +6027,14 @@ Checking test 187 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 903.043407 - 0: The maximum resident set size (KB) = 1236200 + 0: The total amount of wall time = 917.120458 + 0: The maximum resident set size (KB) = 1238928 Test 187 control_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6045,14 +6045,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1593.320112 - 0: The maximum resident set size (KB) = 533572 + 0: The total amount of wall time = 1568.052130 + 0: The maximum resident set size (KB) = 530948 Test 188 control_flake_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6099,14 +6099,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1464.759448 - 0: The maximum resident set size (KB) = 828852 + 0: The total amount of wall time = 1459.700458 + 0: The maximum resident set size (KB) = 830824 Test 189 rap_control_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6153,14 +6153,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1436.267164 - 0: The maximum resident set size (KB) = 835388 + 0: The total amount of wall time = 1442.524311 + 0: The maximum resident set size (KB) = 835220 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6207,14 +6207,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1350.047737 - 0: The maximum resident set size (KB) = 900880 + 0: The total amount of wall time = 1337.667858 + 0: The maximum resident set size (KB) = 903816 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6253,14 +6253,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 713.872011 - 0: The maximum resident set size (KB) = 547112 + 0: The total amount of wall time = 732.638545 + 0: The maximum resident set size (KB) = 549652 Test 192 rap_restart_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6307,14 +6307,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1455.796169 - 0: The maximum resident set size (KB) = 831828 + 0: The total amount of wall time = 1463.574750 + 0: The maximum resident set size (KB) = 834876 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6361,14 +6361,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1442.924657 - 0: The maximum resident set size (KB) = 833220 + 0: The total amount of wall time = 1450.219351 + 0: The maximum resident set size (KB) = 832860 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6407,14 +6407,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1073.398157 - 0: The maximum resident set size (KB) = 545156 + 0: The total amount of wall time = 1055.762782 + 0: The maximum resident set size (KB) = 552156 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6461,14 +6461,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.240210 - 0: The maximum resident set size (KB) = 836788 + 0: The total amount of wall time = 1417.007927 + 0: The maximum resident set size (KB) = 831416 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_qr_gnu Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6515,14 +6515,14 @@ Checking test 197 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1483.428544 - 0: The maximum resident set size (KB) = 844316 + 0: The total amount of wall time = 1475.773727 + 0: The maximum resident set size (KB) = 839780 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6569,14 +6569,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1515.092091 - 0: The maximum resident set size (KB) = 897000 + 0: The total amount of wall time = 1478.185474 + 0: The maximum resident set size (KB) = 893324 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6623,42 +6623,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1450.414259 - 0: The maximum resident set size (KB) = 827220 + 0: The total amount of wall time = 1428.553449 + 0: The maximum resident set size (KB) = 828896 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1072.140718 - 0: The maximum resident set size (KB) = 548616 + 0: The total amount of wall time = 1043.603168 + 0: The maximum resident set size (KB) = 551788 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1077.285284 - 0: The maximum resident set size (KB) = 569836 + 0: The total amount of wall time = 1069.995654 + 0: The maximum resident set size (KB) = 562432 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6705,14 +6705,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.477136 - 0: The maximum resident set size (KB) = 828360 + 0: The total amount of wall time = 1459.892563 + 0: The maximum resident set size (KB) = 828484 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6728,14 +6728,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 833.606832 - 0: The maximum resident set size (KB) = 660716 + 0: The total amount of wall time = 802.979344 + 0: The maximum resident set size (KB) = 658980 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6751,14 +6751,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 863.863281 - 0: The maximum resident set size (KB) = 616068 + 0: The total amount of wall time = 796.389812 + 0: The maximum resident set size (KB) = 615572 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6767,14 +6767,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1077.125952 - 0: The maximum resident set size (KB) = 663820 + 0: The total amount of wall time = 1066.532119 + 0: The maximum resident set size (KB) = 659832 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6783,14 +6783,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 840.376225 - 0: The maximum resident set size (KB) = 658708 + 0: The total amount of wall time = 797.617222 + 0: The maximum resident set size (KB) = 662640 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6806,274 +6806,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 787.686154 - 0: The maximum resident set size (KB) = 642372 + 0: The total amount of wall time = 761.387004 + 0: The maximum resident set size (KB) = 643884 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 456.372866 - 0: The maximum resident set size (KB) = 655724 + 0: The total amount of wall time = 424.650192 + 0: The maximum resident set size (KB) = 655348 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 474.387254 - 0: The maximum resident set size (KB) = 673124 + 0: The total amount of wall time = 472.465494 + 0: The maximum resident set size (KB) = 676084 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_diag_debug_gnu Checking test 210 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.235351 - 0: The maximum resident set size (KB) = 536796 + 0: The total amount of wall time = 123.085658 + 0: The maximum resident set size (KB) = 527376 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/regional_debug_gnu Checking test 211 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 661.056547 - 0: The maximum resident set size (KB) = 595668 + 0: The total amount of wall time = 612.816815 + 0: The maximum resident set size (KB) = 593400 Test 211 regional_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_debug_gnu Checking test 212 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.556749 - 0: The maximum resident set size (KB) = 843104 + 0: The total amount of wall time = 175.716182 + 0: The maximum resident set size (KB) = 842556 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_debug_gnu Checking test 213 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.824643 - 0: The maximum resident set size (KB) = 842128 + 0: The total amount of wall time = 164.133577 + 0: The maximum resident set size (KB) = 839584 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_diag_debug_gnu Checking test 214 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.543990 - 0: The maximum resident set size (KB) = 924084 + 0: The total amount of wall time = 206.900603 + 0: The maximum resident set size (KB) = 924092 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.213794 - 0: The maximum resident set size (KB) = 838908 + 0: The total amount of wall time = 273.925517 + 0: The maximum resident set size (KB) = 839088 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_progcld_thompson_debug_gnu Checking test 216 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.424400 - 0: The maximum resident set size (KB) = 842700 + 0: The total amount of wall time = 169.258617 + 0: The maximum resident set size (KB) = 844532 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_v1beta_debug_gnu Checking test 217 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.006485 - 0: The maximum resident set size (KB) = 839196 + 0: The total amount of wall time = 174.088911 + 0: The maximum resident set size (KB) = 836292 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_ras_debug_gnu Checking test 218 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.512706 - 0: The maximum resident set size (KB) = 494084 + 0: The total amount of wall time = 99.639433 + 0: The maximum resident set size (KB) = 485916 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.577000 - 0: The maximum resident set size (KB) = 479544 + 0: The total amount of wall time = 116.757875 + 0: The maximum resident set size (KB) = 476180 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_debug_p8_gnu Checking test 220 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.010097 - 0: The maximum resident set size (KB) = 1232684 + 0: The total amount of wall time = 114.899623 + 0: The maximum resident set size (KB) = 1229800 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 659.812619 - 0: The maximum resident set size (KB) = 673620 + 0: The total amount of wall time = 618.859261 + 0: The maximum resident set size (KB) = 674724 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 784.447801 - 0: The maximum resident set size (KB) = 664504 + 0: The total amount of wall time = 789.842110 + 0: The maximum resident set size (KB) = 679388 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 570.965874 - 0: The maximum resident set size (KB) = 659620 + 0: The total amount of wall time = 563.179510 + 0: The maximum resident set size (KB) = 661792 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_flake_debug_gnu Checking test 224 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.840556 - 0: The maximum resident set size (KB) = 843476 + 0: The total amount of wall time = 169.702772 + 0: The maximum resident set size (KB) = 841364 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_clm_lake_debug_gnu Checking test 225 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.614763 - 0: The maximum resident set size (KB) = 854000 + 0: The total amount of wall time = 192.628912 + 0: The maximum resident set size (KB) = 845336 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.275557 - 0: The maximum resident set size (KB) = 200108 + 0: The total amount of wall time = 184.155602 + 0: The maximum resident set size (KB) = 200904 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7120,14 +7120,14 @@ Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1474.439272 - 0: The maximum resident set size (KB) = 687512 + 0: The total amount of wall time = 1483.037478 + 0: The maximum resident set size (KB) = 689452 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7174,14 +7174,14 @@ Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 744.415437 - 0: The maximum resident set size (KB) = 687320 + 0: The total amount of wall time = 729.938140 + 0: The maximum resident set size (KB) = 688728 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7228,14 +7228,14 @@ Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 747.430257 - 0: The maximum resident set size (KB) = 702860 + 0: The total amount of wall time = 749.202116 + 0: The maximum resident set size (KB) = 703732 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7282,14 +7282,14 @@ Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1321.465994 - 0: The maximum resident set size (KB) = 735192 + 0: The total amount of wall time = 1389.945842 + 0: The maximum resident set size (KB) = 740888 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7336,14 +7336,14 @@ Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 790.064937 - 0: The maximum resident set size (KB) = 731888 + 0: The total amount of wall time = 774.689385 + 0: The maximum resident set size (KB) = 735200 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7390,14 +7390,14 @@ Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 726.871347 - 0: The maximum resident set size (KB) = 688028 + 0: The total amount of wall time = 739.642663 + 0: The maximum resident set size (KB) = 688380 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7436,42 +7436,42 @@ Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1094.569709 - 0: The maximum resident set size (KB) = 518532 + 0: The total amount of wall time = 1089.727270 + 0: The maximum resident set size (KB) = 521476 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 360.075921 - 0: The maximum resident set size (KB) = 513492 + 0: The total amount of wall time = 365.667736 + 0: The maximum resident set size (KB) = 512956 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 367.937458 - 0: The maximum resident set size (KB) = 537272 + 0: The total amount of wall time = 371.533229 + 0: The maximum resident set size (KB) = 534940 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7487,14 +7487,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 853.054151 - 0: The maximum resident set size (KB) = 581076 + 0: The total amount of wall time = 801.516493 + 0: The maximum resident set size (KB) = 579004 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7504,44 +7504,44 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 777.150914 - 0: The maximum resident set size (KB) = 580340 + 0: The total amount of wall time = 762.285621 + 0: The maximum resident set size (KB) = 579836 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 388.067962 - 0: The maximum resident set size (KB) = 574156 + 0: The total amount of wall time = 398.069933 + 0: The maximum resident set size (KB) = 575624 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 406.780269 - 0: The maximum resident set size (KB) = 602120 + 0: The total amount of wall time = 394.090327 + 0: The maximum resident set size (KB) = 603840 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7588,56 +7588,56 @@ Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1076.426149 - 0: The maximum resident set size (KB) = 710972 + 0: The total amount of wall time = 1079.339117 + 0: The maximum resident set size (KB) = 709632 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_debug_dyn32_phy32_gnu Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.063489 - 0: The maximum resident set size (KB) = 701900 + 0: The total amount of wall time = 171.242769 + 0: The maximum resident set size (KB) = 699336 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.809446 - 0: The maximum resident set size (KB) = 699040 + 0: The total amount of wall time = 167.692474 + 0: The maximum resident set size (KB) = 706404 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/rap_control_dyn64_phy32_debug_gnu Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.019683 - 0: The maximum resident set size (KB) = 720160 + 0: The total amount of wall time = 204.165153 + 0: The maximum resident set size (KB) = 717488 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7702,14 +7702,14 @@ Checking test 244 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1725.008612 - 0: The maximum resident set size (KB) = 1431616 + 0: The total amount of wall time = 1699.559755 + 0: The maximum resident set size (KB) = 1441720 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7771,14 +7771,14 @@ Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1220.782643 - 0: The maximum resident set size (KB) = 1333568 + 0: The total amount of wall time = 1217.956544 + 0: The maximum resident set size (KB) = 1333404 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,14 +7831,14 @@ Checking test 246 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 817.318550 - 0: The maximum resident set size (KB) = 1445288 + 0: The total amount of wall time = 796.843998 + 0: The maximum resident set size (KB) = 1446084 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7902,14 +7902,14 @@ Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1712.162864 - 0: The maximum resident set size (KB) = 1307972 + 0: The total amount of wall time = 1713.261074 + 0: The maximum resident set size (KB) = 1303976 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7961,25 +7961,25 @@ Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 888.317547 - 0: The maximum resident set size (KB) = 1305288 + 0: The total amount of wall time = 915.230790 + 0: The maximum resident set size (KB) = 1301868 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch1/BMC/zrtrr/Samuel.Trahan/lakes/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_10951/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_193871/datm_cdeps_control_cfsr_gnu Checking test 249 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.534075 - 0: The maximum resident set size (KB) = 668352 + 0: The total amount of wall time = 177.553949 + 0: The maximum resident set size (KB) = 669464 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 18 23:45:25 UTC 2023 -Elapsed time: 02h:35m:19s. Have a nice day! +Mon Aug 21 02:30:16 UTC 2023 +Elapsed time: 02h:00m:34s. Have a nice day! From ef9bd859dc6258738a1461079a099581daab7555 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Mon, 21 Aug 2023 13:33:22 -0400 Subject: [PATCH 15/20] Add Orion RT log: passed --- tests/logs/RegressionTests_orion.log | 1552 +++++++++++++------------- 1 file changed, 776 insertions(+), 776 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 8a9aa402b8..184a7c3cf7 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Thu Aug 17 07:59:12 CDT 2023 +Sun Aug 20 19:31:12 CDT 2023 Start Regression test -Testing UFSWM Hash: 1c440ede01a14b213d8ffe4b0bc1d3f8ff8e1dd1 +Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 494f027076d3e8e0dbc9dd1a1980ff44383f47e9 ../FV3 (remotes/origin/BugFix_prv_rev) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/develop-10-g0d9066e) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 638 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 264 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 622 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 632 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 121 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 212 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 211 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 644 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 265 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 705 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 636 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 668 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 796 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 824 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 266 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1151 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 827 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 265 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 796 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 995 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 608 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 642 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 607 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 622 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 689 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 655 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 125 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 191 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 212 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 643 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 218 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 656 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 665 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 611 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 728 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 803 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 835 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 293 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1084 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 267 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 803 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 260 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1056 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 296.483496 - 0: The maximum resident set size (KB) = 3170780 + 0: The total amount of wall time = 297.548712 + 0: The maximum resident set size (KB) = 3157040 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_gfsv17_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 213.747977 - 0: The maximum resident set size (KB) = 1704884 + 0: The total amount of wall time = 213.454255 + 0: The maximum resident set size (KB) = 1704432 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.729383 - 0: The maximum resident set size (KB) = 3194076 + 0: The total amount of wall time = 336.490761 + 0: The maximum resident set size (KB) = 3207572 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.161672 - 0: The maximum resident set size (KB) = 3061716 + 0: The total amount of wall time = 203.352695 + 0: The maximum resident set size (KB) = 3058904 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +394,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.451070 - 0: The maximum resident set size (KB) = 3210900 + 0: The total amount of wall time = 335.328643 + 0: The maximum resident set size (KB) = 3211688 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +454,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 205.339128 - 0: The maximum resident set size (KB) = 3073280 + 0: The total amount of wall time = 203.809262 + 0: The maximum resident set size (KB) = 3082700 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.258936 - 0: The maximum resident set size (KB) = 3537464 + 0: The total amount of wall time = 362.567007 + 0: The maximum resident set size (KB) = 3541520 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.896401 - 0: The maximum resident set size (KB) = 3188684 + 0: The total amount of wall time = 332.327588 + 0: The maximum resident set size (KB) = 3182568 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 273.611885 - 0: The maximum resident set size (KB) = 3055068 + 0: The total amount of wall time = 274.330904 + 0: The maximum resident set size (KB) = 3054420 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.909334 - 0: The maximum resident set size (KB) = 3196632 + 0: The total amount of wall time = 333.239990 + 0: The maximum resident set size (KB) = 3201536 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 589.749343 - 0: The maximum resident set size (KB) = 3331532 + 0: The total amount of wall time = 587.886438 + 0: The maximum resident set size (KB) = 3324336 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 385.649899 - 0: The maximum resident set size (KB) = 3218280 + 0: The total amount of wall time = 398.746867 + 0: The maximum resident set size (KB) = 3222472 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 775.486799 - 0: The maximum resident set size (KB) = 4091272 + 0: The total amount of wall time = 791.404111 + 0: The maximum resident set size (KB) = 4094996 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +936,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.189715 - 0: The maximum resident set size (KB) = 4010996 + 0: The total amount of wall time = 485.369010 + 0: The maximum resident set size (KB) = 3966804 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 249.172567 - 0: The maximum resident set size (KB) = 1740172 + 0: The total amount of wall time = 254.558616 + 0: The maximum resident set size (KB) = 1732024 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.981551 - 0: The maximum resident set size (KB) = 1780060 + 0: The total amount of wall time = 254.541025 + 0: The maximum resident set size (KB) = 1777460 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 516.050620 - 0: The maximum resident set size (KB) = 3234984 + 0: The total amount of wall time = 522.314119 + 0: The maximum resident set size (KB) = 3233732 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.388564 - 0: The maximum resident set size (KB) = 1755784 + 0: The total amount of wall time = 364.015127 + 0: The maximum resident set size (KB) = 1759372 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 254.949736 - 0: The maximum resident set size (KB) = 1776624 + 0: The total amount of wall time = 258.269209 + 0: The maximum resident set size (KB) = 1765092 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 495.234986 - 0: The maximum resident set size (KB) = 2813628 + 0: The total amount of wall time = 493.985357 + 0: The maximum resident set size (KB) = 2816912 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.303218 - 0: The maximum resident set size (KB) = 3200780 + 0: The total amount of wall time = 321.837259 + 0: The maximum resident set size (KB) = 3132352 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1210.480553 - 0: The maximum resident set size (KB) = 1766220 + 0: The total amount of wall time = 1207.456530 + 0: The maximum resident set size (KB) = 1771264 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 580.756844 - 0: The maximum resident set size (KB) = 1042528 + 0: The total amount of wall time = 587.663307 + 0: The maximum resident set size (KB) = 1041360 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1057.754607 - 0: The maximum resident set size (KB) = 1669044 + 0: The total amount of wall time = 1057.505827 + 0: The maximum resident set size (KB) = 1675528 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1405.262902 - 0: The maximum resident set size (KB) = 1722980 + 0: The total amount of wall time = 1359.314126 + 0: The maximum resident set size (KB) = 1717720 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_flake_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.753142 - 0: The maximum resident set size (KB) = 688636 + 0: The total amount of wall time = 192.839130 + 0: The maximum resident set size (KB) = 690864 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,16 +1705,16 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.806442 - 0: The maximum resident set size (KB) = 638708 + 0: The total amount of wall time = 130.764659 + 0: The maximum resident set size (KB) = 640688 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.095939 - 0: The maximum resident set size (KB) = 590084 + 0: The total amount of wall time = 137.138157 + 0: The maximum resident set size (KB) = 596172 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_latlon_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.350967 - 0: The maximum resident set size (KB) = 603696 + 0: The total amount of wall time = 133.948833 + 0: The maximum resident set size (KB) = 593612 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.230158 - 0: The maximum resident set size (KB) = 605696 + 0: The total amount of wall time = 135.638367 + 0: The maximum resident set size (KB) = 585044 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c48_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.994795 -0: The maximum resident set size (KB) = 833456 +0: The total amount of wall time = 343.160665 +0: The maximum resident set size (KB) = 834324 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c192_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.314356 - 0: The maximum resident set size (KB) = 783316 + 0: The total amount of wall time = 527.861290 + 0: The maximum resident set size (KB) = 788456 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c384_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 578.008025 - 0: The maximum resident set size (KB) = 1247728 + 0: The total amount of wall time = 586.856147 + 0: The maximum resident set size (KB) = 1248168 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c384gdas_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 515.079317 - 0: The maximum resident set size (KB) = 1331304 + 0: The total amount of wall time = 510.887651 + 0: The maximum resident set size (KB) = 1362532 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.958411 - 0: The maximum resident set size (KB) = 648120 + 0: The total amount of wall time = 88.149352 + 0: The maximum resident set size (KB) = 646444 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.929325 - 0: The maximum resident set size (KB) = 498696 + 0: The total amount of wall time = 47.284603 + 0: The maximum resident set size (KB) = 499860 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_lndp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.179860 - 0: The maximum resident set size (KB) = 643868 + 0: The total amount of wall time = 82.268158 + 0: The maximum resident set size (KB) = 644120 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_iovr4_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.629601 - 0: The maximum resident set size (KB) = 638620 + 0: The total amount of wall time = 136.573852 + 0: The maximum resident set size (KB) = 638680 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_iovr5_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.106727 - 0: The maximum resident set size (KB) = 639372 + 0: The total amount of wall time = 137.060938 + 0: The maximum resident set size (KB) = 643588 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +2043,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.299733 - 0: The maximum resident set size (KB) = 1617056 + 0: The total amount of wall time = 169.171678 + 0: The maximum resident set size (KB) = 1604544 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.599986 - 0: The maximum resident set size (KB) = 890756 + 0: The total amount of wall time = 89.252403 + 0: The maximum resident set size (KB) = 887492 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +2143,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.704274 - 0: The maximum resident set size (KB) = 1628268 + 0: The total amount of wall time = 167.192946 + 0: The maximum resident set size (KB) = 1628500 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.367873 - 0: The maximum resident set size (KB) = 882712 + 0: The total amount of wall time = 89.782653 + 0: The maximum resident set size (KB) = 881472 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2239,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.676596 - 0: The maximum resident set size (KB) = 1602972 + 0: The total amount of wall time = 173.481783 + 0: The maximum resident set size (KB) = 1599892 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.916812 - 0: The maximum resident set size (KB) = 1700300 + 0: The total amount of wall time = 176.601311 + 0: The maximum resident set size (KB) = 1698268 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 309.814581 - 0: The maximum resident set size (KB) = 1624576 + 0: The total amount of wall time = 310.067539 + 0: The maximum resident set size (KB) = 1615564 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.441716 - 0: The maximum resident set size (KB) = 1633056 + 0: The total amount of wall time = 228.962031 + 0: The maximum resident set size (KB) = 1690144 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2423,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.868184 - 0: The maximum resident set size (KB) = 1617528 + 0: The total amount of wall time = 168.842343 + 0: The maximum resident set size (KB) = 1622240 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/merra2_thompson_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.241858 - 0: The maximum resident set size (KB) = 1632380 + 0: The total amount of wall time = 188.561524 + 0: The maximum resident set size (KB) = 1630692 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.268058 - 0: The maximum resident set size (KB) = 889648 + 0: The total amount of wall time = 286.865049 + 0: The maximum resident set size (KB) = 883180 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 146.488029 - 0: The maximum resident set size (KB) = 873104 + 0: The total amount of wall time = 150.097390 + 0: The maximum resident set size (KB) = 875304 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 287.565823 - 0: The maximum resident set size (KB) = 880460 + 0: The total amount of wall time = 288.736297 + 0: The maximum resident set size (KB) = 884240 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 147.167791 - 0: The maximum resident set size (KB) = 875768 + 0: The total amount of wall time = 230.193071 + 0: The maximum resident set size (KB) = 876560 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.033686 - 0: The maximum resident set size (KB) = 875552 + 0: The total amount of wall time = 306.033473 + 0: The maximum resident set size (KB) = 877448 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 200.617309 - 0: The maximum resident set size (KB) = 869532 + 0: The total amount of wall time = 199.590392 + 0: The maximum resident set size (KB) = 861064 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_noquilt_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2592,28 +2592,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 288.191853 - 0: The maximum resident set size (KB) = 868104 + 0: The total amount of wall time = 289.129552 + 0: The maximum resident set size (KB) = 830364 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 284.756341 - 0: The maximum resident set size (KB) = 875088 + 0: The total amount of wall time = 282.698957 + 0: The maximum resident set size (KB) = 880960 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 288.992202 - 0: The maximum resident set size (KB) = 886564 + 0: The total amount of wall time = 288.348454 + 0: The maximum resident set size (KB) = 889332 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.951720 - 0: The maximum resident set size (KB) = 647328 + 0: The total amount of wall time = 369.496758 + 0: The maximum resident set size (KB) = 649616 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.244897 - 0: The maximum resident set size (KB) = 1078372 + 0: The total amount of wall time = 446.906359 + 0: The maximum resident set size (KB) = 1076764 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 260.221039 - 0: The maximum resident set size (KB) = 1147680 + 0: The total amount of wall time = 261.018116 + 0: The maximum resident set size (KB) = 1208688 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.276392 - 0: The maximum resident set size (KB) = 1020396 + 0: The total amount of wall time = 465.340275 + 0: The maximum resident set size (KB) = 1028956 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.616418 - 0: The maximum resident set size (KB) = 1155284 + 0: The total amount of wall time = 452.908771 + 0: The maximum resident set size (KB) = 1149832 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.788275 - 0: The maximum resident set size (KB) = 972352 + 0: The total amount of wall time = 231.066325 + 0: The maximum resident set size (KB) = 972612 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2922,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.566782 - 0: The maximum resident set size (KB) = 1075072 + 0: The total amount of wall time = 446.172648 + 0: The maximum resident set size (KB) = 1081532 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2976,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.492058 - 0: The maximum resident set size (KB) = 1022828 + 0: The total amount of wall time = 468.062778 + 0: The maximum resident set size (KB) = 1014740 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +3022,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.778828 - 0: The maximum resident set size (KB) = 1006120 + 0: The total amount of wall time = 338.405406 + 0: The maximum resident set size (KB) = 1000788 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +3076,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.247797 - 0: The maximum resident set size (KB) = 1068444 + 0: The total amount of wall time = 427.470149 + 0: The maximum resident set size (KB) = 1070564 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 432.262828 - 0: The maximum resident set size (KB) = 1080860 + 0: The total amount of wall time = 428.865335 + 0: The maximum resident set size (KB) = 1086112 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3184,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.587134 - 0: The maximum resident set size (KB) = 1023644 + 0: The total amount of wall time = 445.781227 + 0: The maximum resident set size (KB) = 1018876 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3238,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.770407 - 0: The maximum resident set size (KB) = 1097088 + 0: The total amount of wall time = 359.448001 + 0: The maximum resident set size (KB) = 1087532 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.365509 - 0: The maximum resident set size (KB) = 991964 + 0: The total amount of wall time = 326.902407 + 0: The maximum resident set size (KB) = 989528 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.089678 - 0: The maximum resident set size (KB) = 1012528 + 0: The total amount of wall time = 326.602460 + 0: The maximum resident set size (KB) = 1027772 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_v1beta_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.961109 - 0: The maximum resident set size (KB) = 1071820 + 0: The total amount of wall time = 436.478978 + 0: The maximum resident set size (KB) = 1073520 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.201043 - 0: The maximum resident set size (KB) = 707412 + 0: The total amount of wall time = 526.290468 + 0: The maximum resident set size (KB) = 704920 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.178948 - 0: The maximum resident set size (KB) = 766992 + 0: The total amount of wall time = 510.848168 + 0: The maximum resident set size (KB) = 775612 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3387,14 +3387,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 147.057838 - 0: The maximum resident set size (KB) = 1040292 + 0: The total amount of wall time = 149.702407 + 0: The maximum resident set size (KB) = 1044320 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3410,14 +3410,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 145.236376 - 0: The maximum resident set size (KB) = 989152 + 0: The total amount of wall time = 144.448386 + 0: The maximum resident set size (KB) = 988436 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3426,14 +3426,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.830662 - 0: The maximum resident set size (KB) = 956844 + 0: The total amount of wall time = 98.882050 + 0: The maximum resident set size (KB) = 948068 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3449,14 +3449,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 132.017345 - 0: The maximum resident set size (KB) = 957280 + 0: The total amount of wall time = 134.495376 + 0: The maximum resident set size (KB) = 986444 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3465,38 +3465,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.006516 - 0: The maximum resident set size (KB) = 1042832 + 0: The total amount of wall time = 150.761897 + 0: The maximum resident set size (KB) = 1044404 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 81.741826 - 0: The maximum resident set size (KB) = 1038740 + 0: The total amount of wall time = 85.399944 + 0: The maximum resident set size (KB) = 1040180 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.483736 - 0: The maximum resident set size (KB) = 971076 + 0: The total amount of wall time = 89.812575 + 0: The maximum resident set size (KB) = 1025192 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_csawmg_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmg_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3507,14 +3507,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.055633 - 0: The maximum resident set size (KB) = 731808 + 0: The total amount of wall time = 335.655281 + 0: The maximum resident set size (KB) = 735408 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_csawmgt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 329.256740 - 0: The maximum resident set size (KB) = 724840 + 0: The total amount of wall time = 331.307570 + 0: The maximum resident set size (KB) = 729740 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_ras_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_ras_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3543,26 +3543,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.399113 - 0: The maximum resident set size (KB) = 730952 + 0: The total amount of wall time = 183.451379 + 0: The maximum resident set size (KB) = 728048 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_wam_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wam_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.345689 - 0: The maximum resident set size (KB) = 650300 + 0: The total amount of wall time = 112.031739 + 0: The maximum resident set size (KB) = 649404 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3609,14 +3609,14 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.786810 - 0: The maximum resident set size (KB) = 1620820 + 0: The total amount of wall time = 151.549976 + 0: The maximum resident set size (KB) = 1611356 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_control_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3627,56 +3627,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.299647 - 0: The maximum resident set size (KB) = 883112 + 0: The total amount of wall time = 266.317402 + 0: The maximum resident set size (KB) = 885136 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 865.372155 - 0: The maximum resident set size (KB) = 1065620 + 0: The total amount of wall time = 860.980978 + 0: The maximum resident set size (KB) = 1072304 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 494.542570 - 0: The maximum resident set size (KB) = 986980 + 0: The total amount of wall time = 499.527900 + 0: The maximum resident set size (KB) = 942940 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 775.622827 - 0: The maximum resident set size (KB) = 1007092 + 0: The total amount of wall time = 751.996813 + 0: The maximum resident set size (KB) = 1017816 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3703,348 +3703,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.813842 - 0: The maximum resident set size (KB) = 795688 + 0: The total amount of wall time = 152.210851 + 0: The maximum resident set size (KB) = 798344 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.489381 - 0: The maximum resident set size (KB) = 795324 + 0: The total amount of wall time = 158.725568 + 0: The maximum resident set size (KB) = 792540 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_stochy_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_stochy_debug_intel Checking test 095 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.080472 - 0: The maximum resident set size (KB) = 803992 + 0: The total amount of wall time = 176.553282 + 0: The maximum resident set size (KB) = 755492 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.601918 - 0: The maximum resident set size (KB) = 808068 + 0: The total amount of wall time = 162.828684 + 0: The maximum resident set size (KB) = 803784 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_csawmg_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_csawmg_debug_intel Checking test 097 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.472894 - 0: The maximum resident set size (KB) = 845580 + 0: The total amount of wall time = 235.093307 + 0: The maximum resident set size (KB) = 848124 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_csawmgt_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.047659 - 0: The maximum resident set size (KB) = 850808 + 0: The total amount of wall time = 240.773993 + 0: The maximum resident set size (KB) = 845732 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_ras_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_ras_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.312588 - 0: The maximum resident set size (KB) = 810664 + 0: The total amount of wall time = 164.598978 + 0: The maximum resident set size (KB) = 789132 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_diag_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.953568 - 0: The maximum resident set size (KB) = 857596 + 0: The total amount of wall time = 192.740862 + 0: The maximum resident set size (KB) = 848136 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_debug_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.864514 - 0: The maximum resident set size (KB) = 1624684 + 0: The total amount of wall time = 174.695626 + 0: The maximum resident set size (KB) = 1624152 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 997.475165 - 0: The maximum resident set size (KB) = 911128 + 0: The total amount of wall time = 1566.645427 + 0: The maximum resident set size (KB) = 889104 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.697249 - 0: The maximum resident set size (KB) = 1129980 + 0: The total amount of wall time = 280.944027 + 0: The maximum resident set size (KB) = 1188188 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.159856 - 0: The maximum resident set size (KB) = 1177028 + 0: The total amount of wall time = 269.391196 + 0: The maximum resident set size (KB) = 1184548 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_unified_drag_suite_debug_intel Checking test 105 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.811082 - 0: The maximum resident set size (KB) = 1180524 + 0: The total amount of wall time = 276.857009 + 0: The maximum resident set size (KB) = 1190848 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.447734 - 0: The maximum resident set size (KB) = 1262908 + 0: The total amount of wall time = 293.204515 + 0: The maximum resident set size (KB) = 1256328 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_cires_ugwp_debug_intel Checking test 107 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.381880 - 0: The maximum resident set size (KB) = 1186088 + 0: The total amount of wall time = 283.477409 + 0: The maximum resident set size (KB) = 1130844 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.227925 - 0: The maximum resident set size (KB) = 1186472 + 0: The total amount of wall time = 296.564918 + 0: The maximum resident set size (KB) = 1186544 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.124940 - 0: The maximum resident set size (KB) = 1192192 + 0: The total amount of wall time = 295.180743 + 0: The maximum resident set size (KB) = 1160468 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_progcld_thompson_debug_intel Checking test 110 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.146207 - 0: The maximum resident set size (KB) = 1193772 + 0: The total amount of wall time = 284.693078 + 0: The maximum resident set size (KB) = 1130576 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_noah_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.731094 - 0: The maximum resident set size (KB) = 1178904 + 0: The total amount of wall time = 328.694959 + 0: The maximum resident set size (KB) = 1176320 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_sfcdiff_debug_intel Checking test 112 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.131462 - 0: The maximum resident set size (KB) = 1132112 + 0: The total amount of wall time = 269.786184 + 0: The maximum resident set size (KB) = 1186256 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.665050 - 0: The maximum resident set size (KB) = 1182816 + 0: The total amount of wall time = 464.979078 + 0: The maximum resident set size (KB) = 1183104 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.868974 - 0: The maximum resident set size (KB) = 1187672 + 0: The total amount of wall time = 274.691444 + 0: The maximum resident set size (KB) = 1183684 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_clm_lake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 333.637174 - 0: The maximum resident set size (KB) = 1181812 + 0: The total amount of wall time = 354.898787 + 0: The maximum resident set size (KB) = 1195240 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_flake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.668069 - 0: The maximum resident set size (KB) = 1190588 + 0: The total amount of wall time = 272.351691 + 0: The maximum resident set size (KB) = 1192472 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_wam_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wam_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.510940 - 0: The maximum resident set size (KB) = 527180 + 0: The total amount of wall time = 282.822472 + 0: The maximum resident set size (KB) = 528140 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4055,14 +4055,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 247.884801 - 0: The maximum resident set size (KB) = 1093540 + 0: The total amount of wall time = 245.958058 + 0: The maximum resident set size (KB) = 1097112 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4109,14 +4109,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.798313 - 0: The maximum resident set size (KB) = 1007660 + 0: The total amount of wall time = 595.075348 + 0: The maximum resident set size (KB) = 966608 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4163,14 +4163,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.581208 - 0: The maximum resident set size (KB) = 913684 + 0: The total amount of wall time = 189.507246 + 0: The maximum resident set size (KB) = 968908 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4217,14 +4217,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.283276 - 0: The maximum resident set size (KB) = 972660 + 0: The total amount of wall time = 191.888543 + 0: The maximum resident set size (KB) = 986764 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.951948 - 0: The maximum resident set size (KB) = 1025868 + 0: The total amount of wall time = 376.944367 + 0: The maximum resident set size (KB) = 987540 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4325,14 +4325,14 @@ Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.145006 - 0: The maximum resident set size (KB) = 939788 + 0: The total amount of wall time = 163.283801 + 0: The maximum resident set size (KB) = 880528 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4379,14 +4379,14 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.317989 - 0: The maximum resident set size (KB) = 921312 + 0: The total amount of wall time = 200.075048 + 0: The maximum resident set size (KB) = 873748 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4425,42 +4425,42 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.133255 - 0: The maximum resident set size (KB) = 960172 + 0: The total amount of wall time = 436.053013 + 0: The maximum resident set size (KB) = 961316 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.252958 - 0: The maximum resident set size (KB) = 874064 + 0: The total amount of wall time = 98.427812 + 0: The maximum resident set size (KB) = 849672 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.559507 - 0: The maximum resident set size (KB) = 884932 + 0: The total amount of wall time = 100.680471 + 0: The maximum resident set size (KB) = 834104 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 113.443199 - 0: The maximum resident set size (KB) = 914288 + 0: The total amount of wall time = 114.618649 + 0: The maximum resident set size (KB) = 913152 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4499,38 +4499,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.400722 - 0: The maximum resident set size (KB) = 940992 + 0: The total amount of wall time = 112.606809 + 0: The maximum resident set size (KB) = 939044 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.425239 - 0: The maximum resident set size (KB) = 851796 + 0: The total amount of wall time = 64.863140 + 0: The maximum resident set size (KB) = 909924 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 74.089733 - 0: The maximum resident set size (KB) = 972096 + 0: The total amount of wall time = 69.941280 + 0: The maximum resident set size (KB) = 978676 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4577,81 +4577,81 @@ Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.822097 - 0: The maximum resident set size (KB) = 977444 + 0: The total amount of wall time = 238.496626 + 0: The maximum resident set size (KB) = 981552 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.792435 - 0: The maximum resident set size (KB) = 1060776 + 0: The total amount of wall time = 268.737898 + 0: The maximum resident set size (KB) = 1067008 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.981438 - 0: The maximum resident set size (KB) = 1076416 + 0: The total amount of wall time = 324.459775 + 0: The maximum resident set size (KB) = 1016436 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.493495 - 0: The maximum resident set size (KB) = 1053108 + 0: The total amount of wall time = 286.336211 + 0: The maximum resident set size (KB) = 1095632 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 256.125174 - 0: The maximum resident set size (KB) = 1008836 + 0: The total amount of wall time = 254.257742 + 0: The maximum resident set size (KB) = 1023516 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 323.793310 - 0: The maximum resident set size (KB) = 1443028 + 0: The total amount of wall time = 330.086909 + 0: The maximum resident set size (KB) = 1446428 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4660,14 +4660,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.746539 - 0: The maximum resident set size (KB) = 1243496 + 0: The total amount of wall time = 375.630152 + 0: The maximum resident set size (KB) = 1199708 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4676,14 +4676,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 729.087534 - 0: The maximum resident set size (KB) = 1280720 + 0: The total amount of wall time = 735.850881 + 0: The maximum resident set size (KB) = 1231928 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4694,14 +4694,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 829.979176 - 0: The maximum resident set size (KB) = 1277856 + 0: The total amount of wall time = 831.617406 + 0: The maximum resident set size (KB) = 1299484 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4723,14 +4723,14 @@ Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 338.828382 - 0: The maximum resident set size (KB) = 522036 + 0: The total amount of wall time = 342.697808 + 0: The maximum resident set size (KB) = 520520 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4752,14 +4752,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 345.335957 - 0: The maximum resident set size (KB) = 500356 + 0: The total amount of wall time = 345.288049 + 0: The maximum resident set size (KB) = 495384 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4768,14 +4768,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 391.232375 - 0: The maximum resident set size (KB) = 532760 + 0: The total amount of wall time = 388.148079 + 0: The maximum resident set size (KB) = 508772 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4822,14 +4822,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 163.931974 - 0: The maximum resident set size (KB) = 361908 + 0: The total amount of wall time = 165.986251 + 0: The maximum resident set size (KB) = 358628 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4876,14 +4876,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 176.970089 - 0: The maximum resident set size (KB) = 365232 + 0: The total amount of wall time = 167.281928 + 0: The maximum resident set size (KB) = 364332 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4965,14 +4965,14 @@ Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 442.186048 - 0: The maximum resident set size (KB) = 436464 + 0: The total amount of wall time = 436.368376 + 0: The maximum resident set size (KB) = 400496 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5054,14 +5054,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 451.468236 - 0: The maximum resident set size (KB) = 480160 + 0: The total amount of wall time = 453.052521 + 0: The maximum resident set size (KB) = 463568 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5070,14 +5070,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 221.472613 - 0: The maximum resident set size (KB) = 538908 + 0: The total amount of wall time = 218.984984 + 0: The maximum resident set size (KB) = 534796 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5099,14 +5099,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 204.345618 - 0: The maximum resident set size (KB) = 479440 + 0: The total amount of wall time = 203.919731 + 0: The maximum resident set size (KB) = 477088 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5128,14 +5128,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 216.071235 - 0: The maximum resident set size (KB) = 521836 + 0: The total amount of wall time = 213.462437 + 0: The maximum resident set size (KB) = 526344 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5144,42 +5144,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.460183 - 0: The maximum resident set size (KB) = 528112 + 0: The total amount of wall time = 284.355482 + 0: The maximum resident set size (KB) = 579000 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 66.178069 - 0: The maximum resident set size (KB) = 387192 + 0: The total amount of wall time = 90.474362 + 0: The maximum resident set size (KB) = 380416 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 743.637998 - 0: The maximum resident set size (KB) = 601508 + 0: The total amount of wall time = 764.615934 + 0: The maximum resident set size (KB) = 603780 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5190,14 +5190,14 @@ Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 531.911951 - 0: The maximum resident set size (KB) = 670328 + 0: The total amount of wall time = 534.171925 + 0: The maximum resident set size (KB) = 668256 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_docn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5205,14 +5205,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 350.456178 - 0: The maximum resident set size (KB) = 1258992 + 0: The total amount of wall time = 345.821677 + 0: The maximum resident set size (KB) = 1265004 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5220,131 +5220,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 353.223964 - 0: The maximum resident set size (KB) = 1246740 + 0: The total amount of wall time = 361.188899 + 0: The maximum resident set size (KB) = 1248652 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/hafs_regional_datm_cdeps_intel Checking test 157 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 944.802448 - 0: The maximum resident set size (KB) = 1206156 + 0: The total amount of wall time = 926.217931 + 0: The maximum resident set size (KB) = 1209436 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.054046 - 0: The maximum resident set size (KB) = 1115696 + 0: The total amount of wall time = 147.883101 + 0: The maximum resident set size (KB) = 1081636 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.119319 - 0: The maximum resident set size (KB) = 1058876 + 0: The total amount of wall time = 91.304121 + 0: The maximum resident set size (KB) = 1069840 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.952675 - 0: The maximum resident set size (KB) = 1000596 + 0: The total amount of wall time = 141.522070 + 0: The maximum resident set size (KB) = 983024 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.854714 - 0: The maximum resident set size (KB) = 997920 + 0: The total amount of wall time = 141.786479 + 0: The maximum resident set size (KB) = 996408 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.462591 - 0: The maximum resident set size (KB) = 997524 + 0: The total amount of wall time = 143.110588 + 0: The maximum resident set size (KB) = 995496 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.029605 - 0: The maximum resident set size (KB) = 1107164 + 0: The total amount of wall time = 146.252143 + 0: The maximum resident set size (KB) = 1111412 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.631706 - 0: The maximum resident set size (KB) = 1117776 + 0: The total amount of wall time = 144.928054 + 0: The maximum resident set size (KB) = 1111332 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_bulk_gefs_intel Checking test 165 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.829843 - 0: The maximum resident set size (KB) = 992172 + 0: The total amount of wall time = 143.496308 + 0: The maximum resident set size (KB) = 977332 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5353,14 +5353,14 @@ Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.091082 - 0: The maximum resident set size (KB) = 1016372 + 0: The total amount of wall time = 424.891626 + 0: The maximum resident set size (KB) = 1021876 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5369,77 +5369,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.866798 - 0: The maximum resident set size (KB) = 1006768 + 0: The total amount of wall time = 427.209313 + 0: The maximum resident set size (KB) = 999336 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_multiple_files_cfsr_intel Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.369808 - 0: The maximum resident set size (KB) = 1077620 + 0: The total amount of wall time = 142.378244 + 0: The maximum resident set size (KB) = 1114516 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_3072x1536_cfsr_intel Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.949696 - 0: The maximum resident set size (KB) = 2316088 + 0: The total amount of wall time = 202.459420 + 0: The maximum resident set size (KB) = 2396860 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_gfs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 204.978714 - 0: The maximum resident set size (KB) = 2446836 + 0: The total amount of wall time = 208.381604 + 0: The maximum resident set size (KB) = 2295304 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 349.920813 - 0: The maximum resident set size (KB) = 1027468 + 0: The total amount of wall time = 352.014700 + 0: The maximum resident set size (KB) = 993192 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.570286 - 0: The maximum resident set size (KB) = 1104900 + 0: The total amount of wall time = 144.580642 + 0: The maximum resident set size (KB) = 1106540 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_lnd_gswp3_intel Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5448,14 +5448,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.719899 - 0: The maximum resident set size (KB) = 253480 + 0: The total amount of wall time = 5.924330 + 0: The maximum resident set size (KB) = 255020 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5464,14 +5464,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.018544 - 0: The maximum resident set size (KB) = 239868 + 0: The total amount of wall time = 9.993390 + 0: The maximum resident set size (KB) = 248856 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5556,14 +5556,14 @@ Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 202.821399 - 0: The maximum resident set size (KB) = 1619960 + 0: The total amount of wall time = 205.040492 + 0: The maximum resident set size (KB) = 1619592 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5606,14 +5606,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.217280 - 0: The maximum resident set size (KB) = 1652592 + 0: The total amount of wall time = 95.848493 + 0: The maximum resident set size (KB) = 1656988 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/control_atmwav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_atmwav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5657,14 +5657,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 85.904621 - 0: The maximum resident set size (KB) = 661732 + 0: The total amount of wall time = 88.186888 + 0: The maximum resident set size (KB) = 664388 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/atmaero_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5708,14 +5708,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.846085 - 0: The maximum resident set size (KB) = 2999264 + 0: The total amount of wall time = 230.445964 + 0: The maximum resident set size (KB) = 2941424 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5759,14 +5759,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.034541 - 0: The maximum resident set size (KB) = 3064912 + 0: The total amount of wall time = 278.754190 + 0: The maximum resident set size (KB) = 3064784 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5810,14 +5810,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.636179 - 0: The maximum resident set size (KB) = 3078124 + 0: The total amount of wall time = 283.870025 + 0: The maximum resident set size (KB) = 3075268 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_atmaq_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5833,14 +5833,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 915.785145 - 0: The maximum resident set size (KB) = 2487172 + 0: The total amount of wall time = 629.350854 + 0: The maximum resident set size (KB) = 2514828 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_atmaq_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5854,14 +5854,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1231.266207 - 0: The maximum resident set size (KB) = 2295392 + 0: The total amount of wall time = 1227.203335 + 0: The maximum resident set size (KB) = 2102708 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1734/stmp/zshrader/FV3_RT/rt_174536/regional_atmaq_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1844/stmp/jongkim/FV3_RT/rt_7707/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5877,12 +5877,12 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 553.639471 - 0: The maximum resident set size (KB) = 2489448 + 0: The total amount of wall time = 551.975578 + 0: The maximum resident set size (KB) = 2492376 Test 183 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 17 09:24:25 CDT 2023 -Elapsed time: 01h:25m:34s. Have a nice day! +Sun Aug 20 20:55:16 CDT 2023 +Elapsed time: 01h:24m:05s. Have a nice day! From ec3a6cd94af11089e01123a503cdae80d03d447b Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Mon, 21 Aug 2023 13:34:42 -0400 Subject: [PATCH 16/20] Add Gaea RT log: passed --- tests/logs/RegressionTests_gaea.log | 1527 ++++++++++++++------------- 1 file changed, 776 insertions(+), 751 deletions(-) diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index ccbdf741c1..b079632f0e 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Thu 17 Aug 2023 09:57:37 AM EDT +Sun 20 Aug 2023 08:30:23 PM EDT Start Regression test -Testing UFSWM Hash: ace946c95c02f7e1921dfe4b1a299274165a0c26 +Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 494f027076d3e8e0dbc9dd1a1980ff44383f47e9 ../FV3 (remotes/origin/BugFix_prv_rev) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/develop-10-g0d9066e) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 734 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 770 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 649 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 280 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 678 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 703 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 689 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 142 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 243 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 272 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 712 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 233 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 780 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 746 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 641 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 760 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 741 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 792 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 884 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 314 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1235 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 893 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 296 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 827 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 740 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 722 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 694 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 276 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 721 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 680 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 706 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 764 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 156 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 251 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 256 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 96 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 723 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 258 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 765 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 762 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 849 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 794 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 808 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 921 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1293 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 911 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 315 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 884 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.960635 - 0: The maximum resident set size (KB) = 1549204 + 0: The total amount of wall time = 314.296258 + 0: The maximum resident set size (KB) = 1549076 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.409368 - 0: The maximum resident set size (KB) = 1457472 + 0: The total amount of wall time = 226.432636 + 0: The maximum resident set size (KB) = 1457544 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.909389 - 0: The maximum resident set size (KB) = 1582872 + 0: The total amount of wall time = 355.345521 + 0: The maximum resident set size (KB) = 1582808 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 211.611564 - 0: The maximum resident set size (KB) = 1300896 + 0: The total amount of wall time = 199.704627 + 0: The maximum resident set size (KB) = 1300332 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.313400 - 0: The maximum resident set size (KB) = 1595340 + 0: The total amount of wall time = 356.461843 + 0: The maximum resident set size (KB) = 1595256 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 228.003715 - 0: The maximum resident set size (KB) = 1315512 + 0: The total amount of wall time = 203.879794 + 0: The maximum resident set size (KB) = 1314924 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.430973 - 0: The maximum resident set size (KB) = 1775120 + 0: The total amount of wall time = 344.808981 + 0: The maximum resident set size (KB) = 1776048 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.805369 - 0: The maximum resident set size (KB) = 1577108 + 0: The total amount of wall time = 355.231049 + 0: The maximum resident set size (KB) = 1578520 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 292.903174 - 0: The maximum resident set size (KB) = 1539496 + 0: The total amount of wall time = 294.852663 + 0: The maximum resident set size (KB) = 1538768 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 643.114888 - 0: The maximum resident set size (KB) = 2521640 + 0: The total amount of wall time = 646.894303 + 0: The maximum resident set size (KB) = 2520112 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 385.547650 - 0: The maximum resident set size (KB) = 2402536 + 0: The total amount of wall time = 392.521131 + 0: The maximum resident set size (KB) = 2377848 -Test 011 cpld_restart_bmark_p8_intel PASS Tries: 2 +Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.942222 - 0: The maximum resident set size (KB) = 1474268 + 0: The total amount of wall time = 267.054957 + 0: The maximum resident set size (KB) = 1474056 -Test 012 cpld_control_noaero_p8_intel PASS Tries: 2 +Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.974375 - 0: The maximum resident set size (KB) = 1508240 + 0: The total amount of wall time = 275.111460 + 0: The maximum resident set size (KB) = 1508316 -Test 013 cpld_control_nowave_noaero_p8_intel PASS +Test 013 cpld_control_nowave_noaero_p8_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.808952 - 0: The maximum resident set size (KB) = 1582916 + 0: The total amount of wall time = 532.775051 + 0: The maximum resident set size (KB) = 1582704 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.041370 + 0: The total amount of wall time = 365.404816 0: The maximum resident set size (KB) = 1492792 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.755464 - 0: The maximum resident set size (KB) = 1509964 + 0: The total amount of wall time = 275.729816 + 0: The maximum resident set size (KB) = 1510100 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 596.058774 - 0: The maximum resident set size (KB) = 2565224 + 0: The total amount of wall time = 595.245242 + 0: The maximum resident set size (KB) = 2565428 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.268566 - 0: The maximum resident set size (KB) = 1582700 + 0: The total amount of wall time = 344.947964 + 0: The maximum resident set size (KB) = 1582948 -Test 018 cpld_control_p8_faster_intel PASS +Test 018 cpld_control_p8_faster_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.824070 - 0: The maximum resident set size (KB) = 485164 + 0: The total amount of wall time = 204.686333 + 0: The maximum resident set size (KB) = 484880 -Test 019 control_flake_intel PASS +Test 019 control_flake_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.401414 - 0: The maximum resident set size (KB) = 436972 + 0: The total amount of wall time = 135.173073 + 0: The maximum resident set size (KB) = 436708 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1265,21 +1265,21 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.989434 - 0: The maximum resident set size (KB) = 441028 + 0: The total amount of wall time = 146.763376 + 0: The maximum resident set size (KB) = 440624 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.150613 - 0: The maximum resident set size (KB) = 436656 + 0: The total amount of wall time = 137.774762 + 0: The maximum resident set size (KB) = 436544 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.466271 - 0: The maximum resident set size (KB) = 436644 + 0: The total amount of wall time = 148.516363 + 0: The maximum resident set size (KB) = 436912 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 024 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 417.675439 -0: The maximum resident set size (KB) = 635908 +0: The total amount of wall time = 417.249668 +0: The maximum resident set size (KB) = 635800 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 569.534469 - 0: The maximum resident set size (KB) = 543312 + 0: The total amount of wall time = 568.178085 + 0: The maximum resident set size (KB) = 543384 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1082.601586 - 0: The maximum resident set size (KB) = 834800 + 0: The total amount of wall time = 1085.182553 + 0: The maximum resident set size (KB) = 834768 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1440,14 @@ Checking test 027 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 901.173067 - 0: The maximum resident set size (KB) = 961820 + 0: The total amount of wall time = 908.404358 + 0: The maximum resident set size (KB) = 961800 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.571344 - 0: The maximum resident set size (KB) = 441648 + 0: The total amount of wall time = 90.744366 + 0: The maximum resident set size (KB) = 441712 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.448100 - 0: The maximum resident set size (KB) = 200576 + 0: The total amount of wall time = 48.975023 + 0: The maximum resident set size (KB) = 200528 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.291478 - 0: The maximum resident set size (KB) = 444608 + 0: The total amount of wall time = 84.397034 + 0: The maximum resident set size (KB) = 444480 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.136895 - 0: The maximum resident set size (KB) = 436852 + 0: The total amount of wall time = 139.481698 + 0: The maximum resident set size (KB) = 436720 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.483857 - 0: The maximum resident set size (KB) = 436632 + 0: The total amount of wall time = 139.492915 + 0: The maximum resident set size (KB) = 436496 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.452645 - 0: The maximum resident set size (KB) = 1408996 + 0: The total amount of wall time = 170.177960 + 0: The maximum resident set size (KB) = 1408864 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.103457 - 0: The maximum resident set size (KB) = 566968 + 0: The total amount of wall time = 89.022732 + 0: The maximum resident set size (KB) = 566904 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.783189 - 0: The maximum resident set size (KB) = 1416016 + 0: The total amount of wall time = 171.004442 + 0: The maximum resident set size (KB) = 1415864 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.619713 - 0: The maximum resident set size (KB) = 585252 + 0: The total amount of wall time = 91.768103 + 0: The maximum resident set size (KB) = 584984 -Test 036 control_restart_qr_p8_intel PASS Tries: 2 +Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.147404 - 0: The maximum resident set size (KB) = 1402864 + 0: The total amount of wall time = 176.933930 + 0: The maximum resident set size (KB) = 1402768 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1834,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.090131 - 0: The maximum resident set size (KB) = 1489692 + 0: The total amount of wall time = 161.722977 + 0: The maximum resident set size (KB) = 1489720 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 318.469395 - 0: The maximum resident set size (KB) = 1409400 + 0: The total amount of wall time = 318.347106 + 0: The maximum resident set size (KB) = 1409300 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.607829 - 0: The maximum resident set size (KB) = 1462164 + 0: The total amount of wall time = 233.298147 + 0: The maximum resident set size (KB) = 1462040 -Test 040 control_p8_rrtmgp_intel PASS Tries: 2 +Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.896105 - 0: The maximum resident set size (KB) = 1411696 + 0: The total amount of wall time = 174.174572 + 0: The maximum resident set size (KB) = 1411564 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.211253 - 0: The maximum resident set size (KB) = 1414264 + 0: The total amount of wall time = 194.444531 + 0: The maximum resident set size (KB) = 1414224 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.938686 - 0: The maximum resident set size (KB) = 585944 + 0: The total amount of wall time = 316.262934 + 0: The maximum resident set size (KB) = 585916 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.989402 - 0: The maximum resident set size (KB) = 581960 + 0: The total amount of wall time = 161.821164 + 0: The maximum resident set size (KB) = 581900 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.547156 - 0: The maximum resident set size (KB) = 585924 + 0: The total amount of wall time = 316.752500 + 0: The maximum resident set size (KB) = 585856 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 162.557035 - 0: The maximum resident set size (KB) = 581960 + 0: The total amount of wall time = 161.332253 + 0: The maximum resident set size (KB) = 581956 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.949599 - 0: The maximum resident set size (KB) = 589148 + 0: The total amount of wall time = 336.769323 + 0: The maximum resident set size (KB) = 589048 -Test 047 regional_decomp_intel PASS +Test 047 regional_decomp_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 184.770995 - 0: The maximum resident set size (KB) = 592076 + 0: The total amount of wall time = 183.253201 + 0: The maximum resident set size (KB) = 591988 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2137,28 +2137,28 @@ Checking test 049 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.335363 - 0: The maximum resident set size (KB) = 570180 + 0: The total amount of wall time = 314.476644 + 0: The maximum resident set size (KB) = 570104 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 317.406890 - 0: The maximum resident set size (KB) = 583624 + 0: The total amount of wall time = 315.969738 + 0: The maximum resident set size (KB) = 583564 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 320.658018 - 0: The maximum resident set size (KB) = 589056 + 0: The total amount of wall time = 320.913949 + 0: The maximum resident set size (KB) = 588992 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 407.467517 - 0: The maximum resident set size (KB) = 267416 + 0: The total amount of wall time = 406.102493 + 0: The maximum resident set size (KB) = 267420 -Test 052 regional_wofs_intel PASS +Test 052 regional_wofs_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 053 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.921519 - 0: The maximum resident set size (KB) = 814152 + 0: The total amount of wall time = 450.632178 + 0: The maximum resident set size (KB) = 814164 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.234160 - 0: The maximum resident set size (KB) = 909440 + 0: The total amount of wall time = 250.722275 + 0: The maximum resident set size (KB) = 909624 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2313,14 @@ Checking test 055 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.699819 - 0: The maximum resident set size (KB) = 814124 + 0: The total amount of wall time = 465.175951 + 0: The maximum resident set size (KB) = 822164 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 056 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.437675 - 0: The maximum resident set size (KB) = 900732 + 0: The total amount of wall time = 427.341758 + 0: The maximum resident set size (KB) = 899812 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.309822 - 0: The maximum resident set size (KB) = 552952 + 0: The total amount of wall time = 228.487906 + 0: The maximum resident set size (KB) = 552760 -Test 057 rap_restart_intel PASS Tries: 2 +Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.341179 - 0: The maximum resident set size (KB) = 814152 + 0: The total amount of wall time = 450.736771 + 0: The maximum resident set size (KB) = 814088 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.466489 - 0: The maximum resident set size (KB) = 813392 + 0: The total amount of wall time = 465.776336 + 0: The maximum resident set size (KB) = 813232 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2567,14 @@ Checking test 060 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.660730 - 0: The maximum resident set size (KB) = 558704 + 0: The total amount of wall time = 334.417462 + 0: The maximum resident set size (KB) = 558564 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2621,14 @@ Checking test 061 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.089279 - 0: The maximum resident set size (KB) = 812048 + 0: The total amount of wall time = 432.489393 + 0: The maximum resident set size (KB) = 811996 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 432.315484 - 0: The maximum resident set size (KB) = 820524 + 0: The total amount of wall time = 431.108270 + 0: The maximum resident set size (KB) = 827880 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2729,14 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.949212 - 0: The maximum resident set size (KB) = 811500 + 0: The total amount of wall time = 447.227567 + 0: The maximum resident set size (KB) = 811448 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2783,42 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.236854 - 0: The maximum resident set size (KB) = 886564 + 0: The total amount of wall time = 398.578478 + 0: The maximum resident set size (KB) = 886440 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.241177 - 0: The maximum resident set size (KB) = 552784 + 0: The total amount of wall time = 321.421458 + 0: The maximum resident set size (KB) = 552684 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.267498 - 0: The maximum resident set size (KB) = 589664 + 0: The total amount of wall time = 324.559135 + 0: The maximum resident set size (KB) = 589656 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.613077 - 0: The maximum resident set size (KB) = 810676 + 0: The total amount of wall time = 441.380664 + 0: The maximum resident set size (KB) = 810736 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 545.993884 - 0: The maximum resident set size (KB) = 493332 + 0: The total amount of wall time = 546.234603 + 0: The maximum resident set size (KB) = 493156 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.012135 - 0: The maximum resident set size (KB) = 486484 + 0: The total amount of wall time = 532.645728 + 0: The maximum resident set size (KB) = 486644 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 070 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2932,14 +2932,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 150.194427 - 0: The maximum resident set size (KB) = 653740 + 0: The total amount of wall time = 151.977549 + 0: The maximum resident set size (KB) = 653288 -Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS Tries: 2 +Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2955,14 +2955,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 150.531067 - 0: The maximum resident set size (KB) = 648544 + 0: The total amount of wall time = 147.793924 + 0: The maximum resident set size (KB) = 648388 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2971,14 +2971,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.364741 - 0: The maximum resident set size (KB) = 663392 + 0: The total amount of wall time = 94.060218 + 0: The maximum resident set size (KB) = 663032 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_conus13km_hrrr_warm_intel Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 134.074009 - 0: The maximum resident set size (KB) = 637908 + 0: The total amount of wall time = 132.573833 + 0: The maximum resident set size (KB) = 637572 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3010,32 +3010,32 @@ Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.942426 - 0: The maximum resident set size (KB) = 656204 + 0: The total amount of wall time = 150.901834 + 0: The maximum resident set size (KB) = 656228 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.446367 - 0: The maximum resident set size (KB) = 647776 + 0: The total amount of wall time = 83.897551 + 0: The maximum resident set size (KB) = 647820 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.456013 - 0: The maximum resident set size (KB) = 721672 + 0: The total amount of wall time = 117.544929 + 0: The maximum resident set size (KB) = 721764 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS @@ -3044,8 +3044,8 @@ Test 077 control_csawmgt_intel FAIL Test 077 control_csawmgt_intel FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3056,26 +3056,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.566340 - 0: The maximum resident set size (KB) = 472492 + 0: The total amount of wall time = 193.133480 + 0: The maximum resident set size (KB) = 472752 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.689810 - 0: The maximum resident set size (KB) = 191572 + 0: The total amount of wall time = 122.362219 + 0: The maximum resident set size (KB) = 191764 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3122,14 +3122,14 @@ Checking test 080 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.734294 - 0: The maximum resident set size (KB) = 1408848 + 0: The total amount of wall time = 161.209182 + 0: The maximum resident set size (KB) = 1408788 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3140,56 +3140,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.426315 + 0: The total amount of wall time = 296.016682 0: The maximum resident set size (KB) = 585576 Test 081 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 870.470968 - 0: The maximum resident set size (KB) = 685884 + 0: The total amount of wall time = 863.384432 + 0: The maximum resident set size (KB) = 685908 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.530647 - 0: The maximum resident set size (KB) = 697232 + 0: The total amount of wall time = 492.913212 + 0: The maximum resident set size (KB) = 697168 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS Tries: 2 +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_conus13km_hrrr_warm_debug_intel Checking test 084 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 771.435635 - 0: The maximum resident set size (KB) = 668976 + 0: The total amount of wall time = 772.631691 + 0: The maximum resident set size (KB) = 669028 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3216,348 +3216,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 150.797778 - 0: The maximum resident set size (KB) = 599688 + 0: The total amount of wall time = 151.052582 + 0: The maximum resident set size (KB) = 599848 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.620398 - 0: The maximum resident set size (KB) = 599756 + 0: The total amount of wall time = 152.088293 + 0: The maximum resident set size (KB) = 599656 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS Tries: 2 +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.390421 - 0: The maximum resident set size (KB) = 605376 + 0: The total amount of wall time = 170.543019 + 0: The maximum resident set size (KB) = 605404 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.375583 - 0: The maximum resident set size (KB) = 604476 + 0: The total amount of wall time = 154.100254 + 0: The maximum resident set size (KB) = 604352 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.083161 - 0: The maximum resident set size (KB) = 641768 + 0: The total amount of wall time = 243.491408 + 0: The maximum resident set size (KB) = 641576 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.283017 - 0: The maximum resident set size (KB) = 641540 + 0: The total amount of wall time = 239.822832 + 0: The maximum resident set size (KB) = 641644 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.977620 - 0: The maximum resident set size (KB) = 615484 + 0: The total amount of wall time = 154.725176 + 0: The maximum resident set size (KB) = 615384 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.419489 - 0: The maximum resident set size (KB) = 657796 + 0: The total amount of wall time = 156.093269 + 0: The maximum resident set size (KB) = 657396 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.884318 - 0: The maximum resident set size (KB) = 1426320 + 0: The total amount of wall time = 172.760784 + 0: The maximum resident set size (KB) = 1426276 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1029.863523 - 0: The maximum resident set size (KB) = 608280 + 0: The total amount of wall time = 1030.372087 + 0: The maximum resident set size (KB) = 607996 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.930217 - 0: The maximum resident set size (KB) = 978952 + 0: The total amount of wall time = 281.423958 + 0: The maximum resident set size (KB) = 978972 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.859800 - 0: The maximum resident set size (KB) = 975720 + 0: The total amount of wall time = 276.416597 + 0: The maximum resident set size (KB) = 975756 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.848655 - 0: The maximum resident set size (KB) = 978996 + 0: The total amount of wall time = 281.530931 + 0: The maximum resident set size (KB) = 979016 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.087010 - 0: The maximum resident set size (KB) = 1060096 + 0: The total amount of wall time = 295.159649 + 0: The maximum resident set size (KB) = 1060040 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.502439 - 0: The maximum resident set size (KB) = 978856 + 0: The total amount of wall time = 288.034793 + 0: The maximum resident set size (KB) = 978688 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.184197 - 0: The maximum resident set size (KB) = 987948 + 0: The total amount of wall time = 288.496069 + 0: The maximum resident set size (KB) = 979704 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.973763 - 0: The maximum resident set size (KB) = 980148 + 0: The total amount of wall time = 283.834531 + 0: The maximum resident set size (KB) = 980128 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.292493 - 0: The maximum resident set size (KB) = 978872 + 0: The total amount of wall time = 282.034201 + 0: The maximum resident set size (KB) = 978988 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.100010 - 0: The maximum resident set size (KB) = 976920 + 0: The total amount of wall time = 275.197058 + 0: The maximum resident set size (KB) = 985156 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.619569 - 0: The maximum resident set size (KB) = 977620 + 0: The total amount of wall time = 282.548890 + 0: The maximum resident set size (KB) = 977480 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.175984 - 0: The maximum resident set size (KB) = 976728 + 0: The total amount of wall time = 466.074129 + 0: The maximum resident set size (KB) = 976752 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.160504 - 0: The maximum resident set size (KB) = 974872 + 0: The total amount of wall time = 276.809309 + 0: The maximum resident set size (KB) = 974768 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.915016 - 0: The maximum resident set size (KB) = 988396 + 0: The total amount of wall time = 347.550678 + 0: The maximum resident set size (KB) = 980344 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.791699 - 0: The maximum resident set size (KB) = 987248 + 0: The total amount of wall time = 282.499656 + 0: The maximum resident set size (KB) = 987312 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.987674 - 0: The maximum resident set size (KB) = 221060 + 0: The total amount of wall time = 357.057805 + 0: The maximum resident set size (KB) = 220664 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3568,14 +3568,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.922576 - 0: The maximum resident set size (KB) = 805300 + 0: The total amount of wall time = 234.659174 + 0: The maximum resident set size (KB) = 805464 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3622,14 +3622,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.292810 - 0: The maximum resident set size (KB) = 698172 + 0: The total amount of wall time = 370.579560 + 0: The maximum resident set size (KB) = 698280 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3676,14 +3676,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.880505 - 0: The maximum resident set size (KB) = 705248 + 0: The total amount of wall time = 189.784123 + 0: The maximum resident set size (KB) = 697108 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3730,14 +3730,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.510835 - 0: The maximum resident set size (KB) = 701820 + 0: The total amount of wall time = 190.835495 + 0: The maximum resident set size (KB) = 709172 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3784,14 +3784,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.912045 - 0: The maximum resident set size (KB) = 751636 + 0: The total amount of wall time = 349.336906 + 0: The maximum resident set size (KB) = 751660 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3838,14 +3838,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.490236 - 0: The maximum resident set size (KB) = 743616 + 0: The total amount of wall time = 176.119875 + 0: The maximum resident set size (KB) = 747760 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.401663 - 0: The maximum resident set size (KB) = 697052 + 0: The total amount of wall time = 196.227885 + 0: The maximum resident set size (KB) = 697076 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3938,42 +3938,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.355590 - 0: The maximum resident set size (KB) = 528532 + 0: The total amount of wall time = 275.607324 + 0: The maximum resident set size (KB) = 528560 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.456262 - 0: The maximum resident set size (KB) = 518420 + 0: The total amount of wall time = 98.817865 + 0: The maximum resident set size (KB) = 518392 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.133111 - 0: The maximum resident set size (KB) = 548888 + 0: The total amount of wall time = 101.290109 + 0: The maximum resident set size (KB) = 548808 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3989,14 +3989,14 @@ Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 121.087774 - 0: The maximum resident set size (KB) = 593932 + 0: The total amount of wall time = 121.073624 + 0: The maximum resident set size (KB) = 593528 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4010,40 +4010,40 @@ Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 119.750807 - 0: The maximum resident set size (KB) = 603496 + 0: The total amount of wall time = 118.956477 + 0: The maximum resident set size (KB) = 603820 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.299545 - 0: The maximum resident set size (KB) = 589908 + 0: The total amount of wall time = 78.979857 + 0: The maximum resident set size (KB) = 590040 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 113.037972 - 0: The maximum resident set size (KB) = 664052 + 0: The total amount of wall time = 103.682041 + 0: The maximum resident set size (KB) = 664112 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4090,81 +4090,81 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.193947 - 0: The maximum resident set size (KB) = 709512 + 0: The total amount of wall time = 250.760383 + 0: The maximum resident set size (KB) = 709444 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.277395 - 0: The maximum resident set size (KB) = 862116 + 0: The total amount of wall time = 278.323543 + 0: The maximum resident set size (KB) = 870220 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.891719 - 0: The maximum resident set size (KB) = 860764 + 0: The total amount of wall time = 272.570685 + 0: The maximum resident set size (KB) = 860708 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.394462 - 0: The maximum resident set size (KB) = 875068 + 0: The total amount of wall time = 290.786121 + 0: The maximum resident set size (KB) = 875280 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 240.135016 - 0: The maximum resident set size (KB) = 699496 + 0: The total amount of wall time = 238.653651 + 0: The maximum resident set size (KB) = 695924 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 278.170906 - 0: The maximum resident set size (KB) = 1056336 + 0: The total amount of wall time = 277.404465 + 0: The maximum resident set size (KB) = 1056248 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4173,14 +4173,14 @@ Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 422.857408 - 0: The maximum resident set size (KB) = 727892 + 0: The total amount of wall time = 426.133952 + 0: The maximum resident set size (KB) = 732672 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4189,14 +4189,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 912.590494 - 0: The maximum resident set size (KB) = 765724 + 0: The total amount of wall time = 913.405509 + 0: The maximum resident set size (KB) = 764924 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1021.363394 - 0: The maximum resident set size (KB) = 783664 + 0: The total amount of wall time = 1017.476745 + 0: The maximum resident set size (KB) = 784440 -Test 132 hafs_regional_atm_ocn_wav_intel PASS Tries: 2 +Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4236,14 +4236,14 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 339.092278 - 0: The maximum resident set size (KB) = 287332 + 0: The total amount of wall time = 338.419177 + 0: The maximum resident set size (KB) = 287684 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4265,14 @@ Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 368.405284 - 0: The maximum resident set size (KB) = 287568 + 0: The total amount of wall time = 373.721831 + 0: The maximum resident set size (KB) = 287600 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +4281,14 @@ Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 383.625635 - 0: The maximum resident set size (KB) = 290812 + 0: The total amount of wall time = 384.770780 + 0: The maximum resident set size (KB) = 290648 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4335,14 +4335,14 @@ Checking test 136 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 152.308990 - 0: The maximum resident set size (KB) = 186488 + 0: The total amount of wall time = 152.298135 + 0: The maximum resident set size (KB) = 185816 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4389,14 +4389,14 @@ Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 198.297952 - 0: The maximum resident set size (KB) = 199520 + 0: The total amount of wall time = 214.803693 + 0: The maximum resident set size (KB) = 199092 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4478,14 +4478,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 437.615442 - 0: The maximum resident set size (KB) = 218336 + 0: The total amount of wall time = 438.152875 + 0: The maximum resident set size (KB) = 218064 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_global_multiple_4nests_atm_qr_intel Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 541.563980 - 0: The maximum resident set size (KB) = 260124 + 0: The total amount of wall time = 525.241914 + 0: The maximum resident set size (KB) = 246700 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4583,14 +4583,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 216.678188 - 0: The maximum resident set size (KB) = 299788 + 0: The total amount of wall time = 216.120026 + 0: The maximum resident set size (KB) = 300548 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4612,14 +4612,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 201.467734 - 0: The maximum resident set size (KB) = 298400 + 0: The total amount of wall time = 199.694595 + 0: The maximum resident set size (KB) = 297904 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4641,14 +4641,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 230.621408 - 0: The maximum resident set size (KB) = 318008 + 0: The total amount of wall time = 247.496751 + 0: The maximum resident set size (KB) = 318448 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4657,42 +4657,42 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 247.614220 - 0: The maximum resident set size (KB) = 328160 + 0: The total amount of wall time = 248.090967 + 0: The maximum resident set size (KB) = 328256 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.847132 - 0: The maximum resident set size (KB) = 206756 + 0: The total amount of wall time = 59.402012 + 0: The maximum resident set size (KB) = 205656 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.607631 - 0: The maximum resident set size (KB) = 353452 + 0: The total amount of wall time = 757.895185 + 0: The maximum resident set size (KB) = 353732 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 638.181937 - 0: The maximum resident set size (KB) = 387272 + 0: The total amount of wall time = 639.688511 + 0: The maximum resident set size (KB) = 386388 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 147 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.923067 - 0: The maximum resident set size (KB) = 741236 + 0: The total amount of wall time = 359.282024 + 0: The maximum resident set size (KB) = 739328 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4733,131 +4733,131 @@ Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.943228 - 0: The maximum resident set size (KB) = 723688 + 0: The total amount of wall time = 361.348943 + 0: The maximum resident set size (KB) = 725500 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/hafs_regional_datm_cdeps_intel Checking test 149 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1186.904154 - 0: The maximum resident set size (KB) = 838240 + 0: The total amount of wall time = 1179.779506 + 0: The maximum resident set size (KB) = 789760 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_control_cfsr_intel Checking test 150 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.624435 - 0: The maximum resident set size (KB) = 715168 + 0: The total amount of wall time = 168.139561 + 0: The maximum resident set size (KB) = 715224 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_restart_cfsr_intel Checking test 151 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.448066 - 0: The maximum resident set size (KB) = 691328 + 0: The total amount of wall time = 115.726897 + 0: The maximum resident set size (KB) = 702988 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_control_gefs_intel Checking test 152 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.651575 - 0: The maximum resident set size (KB) = 599624 + 0: The total amount of wall time = 156.737996 + 0: The maximum resident set size (KB) = 599800 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_iau_gefs_intel Checking test 153 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.139287 - 0: The maximum resident set size (KB) = 597244 + 0: The total amount of wall time = 157.965767 + 0: The maximum resident set size (KB) = 597596 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_stochy_gefs_intel Checking test 154 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.445823 - 0: The maximum resident set size (KB) = 599876 + 0: The total amount of wall time = 158.135749 + 0: The maximum resident set size (KB) = 597476 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_ciceC_cfsr_intel Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.425465 - 0: The maximum resident set size (KB) = 715304 + 0: The total amount of wall time = 162.862693 + 0: The maximum resident set size (KB) = 715224 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_bulk_cfsr_intel Checking test 156 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.397782 - 0: The maximum resident set size (KB) = 715400 + 0: The total amount of wall time = 162.626761 + 0: The maximum resident set size (KB) = 715044 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_bulk_gefs_intel Checking test 157 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.980354 - 0: The maximum resident set size (KB) = 597368 + 0: The total amount of wall time = 154.844134 + 0: The maximum resident set size (KB) = 597648 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_mx025_cfsr_intel Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4866,14 +4866,14 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 386.041948 - 0: The maximum resident set size (KB) = 496880 + 0: The total amount of wall time = 390.551213 + 0: The maximum resident set size (KB) = 497128 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_mx025_gefs_intel Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4882,77 +4882,77 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 384.905471 - 0: The maximum resident set size (KB) = 481752 + 0: The total amount of wall time = 394.688001 + 0: The maximum resident set size (KB) = 479604 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_multiple_files_cfsr_intel Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.720144 - 0: The maximum resident set size (KB) = 703692 + 0: The total amount of wall time = 163.974465 + 0: The maximum resident set size (KB) = 703896 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_3072x1536_cfsr_intel Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 267.201485 - 0: The maximum resident set size (KB) = 1942012 + 0: The total amount of wall time = 300.002995 + 0: The maximum resident set size (KB) = 1934296 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_gfs_intel Checking test 162 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.027853 - 0: The maximum resident set size (KB) = 1932448 + 0: The total amount of wall time = 282.722622 + 0: The maximum resident set size (KB) = 1932960 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_debug_cfsr_intel Checking test 163 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 367.571310 - 0: The maximum resident set size (KB) = 688880 + 0: The total amount of wall time = 381.686908 + 0: The maximum resident set size (KB) = 700404 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.015185 - 0: The maximum resident set size (KB) = 703676 + 0: The total amount of wall time = 163.226783 + 0: The maximum resident set size (KB) = 714980 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4961,14 +4961,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.027032 - 0: The maximum resident set size (KB) = 107588 + 0: The total amount of wall time = 7.777551 + 0: The maximum resident set size (KB) = 107560 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/datm_cdeps_lnd_gswp3_rst_intel Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4977,14 +4977,14 @@ Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.033149 - 0: The maximum resident set size (KB) = 105292 + 0: The total amount of wall time = 12.910157 + 0: The maximum resident set size (KB) = 105356 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5069,14 +5069,14 @@ Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 214.442597 - 0: The maximum resident set size (KB) = 1443032 + 0: The total amount of wall time = 216.058763 + 0: The maximum resident set size (KB) = 1443160 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5119,14 +5119,14 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.913390 - 0: The maximum resident set size (KB) = 1427448 + 0: The total amount of wall time = 94.875413 + 0: The maximum resident set size (KB) = 1427728 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5170,14 +5170,14 @@ Checking test 169 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.360844 - 0: The maximum resident set size (KB) = 454132 + 0: The total amount of wall time = 89.224597 + 0: The maximum resident set size (KB) = 454324 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5221,14 +5221,14 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.076087 - 0: The maximum resident set size (KB) = 1462284 + 0: The total amount of wall time = 239.063004 + 0: The maximum resident set size (KB) = 1462164 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5272,14 +5272,14 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.459426 - 0: The maximum resident set size (KB) = 1513320 + 0: The total amount of wall time = 298.600762 + 0: The maximum resident set size (KB) = 1513292 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5323,14 +5323,14 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.744218 - 0: The maximum resident set size (KB) = 1520636 + 0: The total amount of wall time = 293.347634 + 0: The maximum resident set size (KB) = 1520432 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5346,14 +5346,14 @@ Checking test 173 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 642.000986 - 0: The maximum resident set size (KB) = 1949912 + 0: The total amount of wall time = 660.013029 + 0: The maximum resident set size (KB) = 1931488 Test 173 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_24999/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_41968/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5369,13 +5369,38 @@ Checking test 174 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 630.744915 - 0: The maximum resident set size (KB) = 1932772 + 0: The total amount of wall time = 622.776484 + 0: The maximum resident set size (KB) = 1950692 + +Test 174 regional_atmaq_faster_intel PASS -Test 174 regional_atmaq_faster_intel PASS Tries: 2 +FAILED TESTS: +control_csawmgt_intel 077 failed in run_test + +REGRESSION TEST FAILED +Sun 20 Aug 2023 09:41:19 PM EDT +Elapsed time: 01h:11m:10s. Have a nice day! +Mon 21 Aug 2023 07:15:02 AM EDT +Start Regression test + +Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/develop-10-g0d9066e) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) + 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) + 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) +Compile csawmg_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_640/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_22089/control_csawmgt_intel Checking test 001 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5386,12 +5411,12 @@ Checking test 001 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 360.230082 - 0: The maximum resident set size (KB) = 503240 + 0: The total amount of wall time = 419.032336 + 0: The maximum resident set size (KB) = 503292 Test 001 control_csawmgt_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 17 Aug 2023 11:57:30 AM EDT -Elapsed time: 00h:22m:13s. Have a nice day! +Mon 21 Aug 2023 07:40:51 AM EDT +Elapsed time: 00h:26m:01s. Have a nice day! From 4ea26a4989bbd230be9e4fef5c681a1c1e7cbaf1 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 21 Aug 2023 13:29:49 -0600 Subject: [PATCH 17/20] add cheyenne RT logs: passed --- tests/logs/RegressionTests_cheyenne.log | 3343 ++++++++++------------- 1 file changed, 1511 insertions(+), 1832 deletions(-) diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index 5794364948..f4acb5c0eb 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,72 +1,72 @@ -Thu Aug 17 07:57:55 MDT 2023 +Mon Aug 21 09:05:08 MDT 2023 Start Regression test -Testing UFSWM Hash: ace946c95c02f7e1921dfe4b1a299274165a0c26 +Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 494f027076d3e8e0dbc9dd1a1980ff44383f47e9 ../FV3 (remotes/origin/BugFix_prv_rev) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/develop-10-g0d9066e) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 948 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 992 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 926 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 438 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 406 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1126 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 413 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 411 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 649 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 960 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 407 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 977 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 1036 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 988 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 975 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 995 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 924 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 408 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1121 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 419 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 421 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 652 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 942 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 986 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 1023 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1028 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile datm_cdeps_debug_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 311 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 437 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 1163 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 325 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1145 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1169 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 298 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 906 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1023 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 1139 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 522 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1127 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1423 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 326 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 451 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 612 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 414 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1424 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 299 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 421 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 575 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1438 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 848 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_p8_mixedmode_intel +Compile datm_cdeps_faster_intel elapsed time 445 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 307 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 117 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 1177 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 334 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1148 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1189 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 890 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 901 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 410 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1017 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1146 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1170 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1532 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 453 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1424 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 421 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1426 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 296 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 435 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 580 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1445 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 850 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -131,14 +131,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 318.133271 -0:The maximum resident set size (KB) = 2741356 +0:The total amount of wall time = 325.366942 +0:The maximum resident set size (KB) = 2742960 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_gfsv17_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_gfsv17_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.028505 -0:The maximum resident set size (KB) = 1435748 +0:The total amount of wall time = 280.735417 +0:The maximum resident set size (KB) = 1435672 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,16 +274,74 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.057924 -0:The maximum resident set size (KB) = 2761340 +0:The total amount of wall time = 330.373717 +0:The maximum resident set size (KB) = 2763596 Test 003 cpld_control_p8_intel PASS -Test 004 cpld_restart_p8_intel FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_restart_p8_intel +Checking test 004 cpld_restart_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 184.666638 +0:The maximum resident set size (KB) = 2619684 + +Test 004 cpld_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_qr_p8_intel + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -348,16 +406,74 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.883508 -0:The maximum resident set size (KB) = 2766728 +0:The total amount of wall time = 327.992379 +0:The maximum resident set size (KB) = 2769604 Test 005 cpld_control_qr_p8_intel PASS -Test 006 cpld_restart_qr_p8_intel FAIL + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_restart_qr_p8_intel +Checking test 006 cpld_restart_qr_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 190.995407 +0:The maximum resident set size (KB) = 2671560 + +Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -410,14 +526,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 237.893193 -0:The maximum resident set size (KB) = 3213812 +0:The total amount of wall time = 241.515651 +0:The maximum resident set size (KB) = 3216580 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -470,14 +586,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.053737 -0:The maximum resident set size (KB) = 2767516 +0:The total amount of wall time = 330.369601 +0:The maximum resident set size (KB) = 2771708 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_mpi_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -530,14 +646,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 269.710933 -0:The maximum resident set size (KB) = 2733932 +0:The total amount of wall time = 282.186324 +0:The maximum resident set size (KB) = 2733020 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_ciceC_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -602,18 +718,134 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.715983 -0:The maximum resident set size (KB) = 2760976 +0:The total amount of wall time = 331.672711 +0:The maximum resident set size (KB) = 2761324 Test 010 cpld_control_ciceC_p8_intel PASS -Test 011 cpld_control_c192_p8_intel FAIL -Test 011 cpld_control_c192_p8_intel FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_c192_p8_intel +Checking test 011 cpld_control_c192_p8_intel results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 594.882015 +0:The maximum resident set size (KB) = 3507188 + +Test 011 cpld_control_c192_p8_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_restart_c192_p8_intel +Checking test 012 cpld_restart_c192_p8_intel results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 369.992835 +0:The maximum resident set size (KB) = 3324032 + +Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -677,14 +909,14 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 290.330638 -0:The maximum resident set size (KB) = 1445192 +0:The total amount of wall time = 283.195073 +0:The maximum resident set size (KB) = 1445092 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -746,14 +978,14 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 191.714029 -0:The maximum resident set size (KB) = 1462504 +0:The total amount of wall time = 193.511140 +0:The maximum resident set size (KB) = 1463316 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -806,14 +1038,14 @@ Checking test 015 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 339.749211 -0:The maximum resident set size (KB) = 2799116 +0:The total amount of wall time = 347.278646 +0:The maximum resident set size (KB) = 2797356 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_debug_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -865,14 +1097,14 @@ Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 287.420948 -0:The maximum resident set size (KB) = 1462984 +0:The total amount of wall time = 286.921967 +0:The maximum resident set size (KB) = 1463048 -Test 016 cpld_debug_noaero_p8_intel PASS Tries: 2 +Test 016 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_noaero_p8_agrid_intel Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -934,14 +1166,14 @@ Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 192.066244 -0:The maximum resident set size (KB) = 1466912 +0:The total amount of wall time = 195.501841 +0:The maximum resident set size (KB) = 1466820 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -991,14 +1223,14 @@ Checking test 018 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 603.778716 -0:The maximum resident set size (KB) = 2591532 +0:The total amount of wall time = 604.659239 +0:The maximum resident set size (KB) = 2591780 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_control_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1062,14 +1294,14 @@ Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 1173.515654 -0:The maximum resident set size (KB) = 1509044 +0:The total amount of wall time = 1176.818315 +0:The maximum resident set size (KB) = 1508564 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_restart_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1121,14 +1353,14 @@ Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 549.719007 +0:The total amount of wall time = 549.843121 0:The maximum resident set size (KB) = 685704 Test 020 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1192,14 +1424,14 @@ Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 1067.284019 -0:The maximum resident set size (KB) = 1485600 +0:The total amount of wall time = 1048.029395 +0:The maximum resident set size (KB) = 1485752 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/cpld_debug_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1251,14 +1483,14 @@ Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 1476.463381 -0:The maximum resident set size (KB) = 1526332 +0:The total amount of wall time = 1488.963493 +0:The maximum resident set size (KB) = 1526292 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_flake_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_flake_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1269,14 +1501,14 @@ Checking test 023 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 217.501302 -0:The maximum resident set size (KB) = 509960 +0:The total amount of wall time = 210.811867 +0:The maximum resident set size (KB) = 510024 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_CubedSphereGrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1303,36 +1535,36 @@ Checking test 024 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.116705 -0:The maximum resident set size (KB) = 462356 +0:The total amount of wall time = 144.867291 +0:The maximum resident set size (KB) = 462392 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_CubedSphereGrid_parallel_intel Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.442670 -0:The maximum resident set size (KB) = 461908 +0:The total amount of wall time = 152.615983 +0:The maximum resident set size (KB) = 461976 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_latlon_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_latlon_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1343,32 +1575,32 @@ Checking test 026 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.618973 -0:The maximum resident set size (KB) = 463380 +0:The total amount of wall time = 150.192333 +0:The maximum resident set size (KB) = 463352 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_wrtGauss_netcdf_parallel_intel Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.266335 -0:The maximum resident set size (KB) = 463220 +0:The total amount of wall time = 152.968350 +0:The maximum resident set size (KB) = 463276 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1407,14 +1639,14 @@ Checking test 028 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 441.810171 -0:The maximum resident set size (KB) = 635316 +0:The total amount of wall time = 443.766948 +0:The maximum resident set size (KB) = 635328 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_c192_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_c192_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1425,14 +1657,14 @@ Checking test 029 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 588.907182 -0:The maximum resident set size (KB) = 566488 +0:The total amount of wall time = 595.975445 +0:The maximum resident set size (KB) = 566500 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_c384_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_c384_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1443,14 +1675,14 @@ Checking test 030 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 588.065476 -0:The maximum resident set size (KB) = 890140 +0:The total amount of wall time = 591.635228 +0:The maximum resident set size (KB) = 889980 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_c384gdas_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_c384gdas_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1493,14 +1725,14 @@ Checking test 031 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.983898 -0:The maximum resident set size (KB) = 1047636 +0:The total amount of wall time = 523.702058 +0:The maximum resident set size (KB) = 1048032 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_stochy_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1511,28 +1743,28 @@ Checking test 032 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.074575 -0:The maximum resident set size (KB) = 465444 +0:The total amount of wall time = 96.903318 +0:The maximum resident set size (KB) = 465428 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_stochy_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_stochy_restart_intel Checking test 033 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.606804 -0:The maximum resident set size (KB) = 231172 +0:The total amount of wall time = 53.598196 +0:The maximum resident set size (KB) = 231224 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1543,14 +1775,14 @@ Checking test 034 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 91.465112 -0:The maximum resident set size (KB) = 466624 +0:The total amount of wall time = 88.660399 +0:The maximum resident set size (KB) = 466656 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_iovr4_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_iovr4_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1565,14 +1797,14 @@ Checking test 035 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.572936 -0:The maximum resident set size (KB) = 463300 +0:The total amount of wall time = 150.969095 +0:The maximum resident set size (KB) = 463308 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_iovr5_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_iovr5_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1587,14 +1819,14 @@ Checking test 036 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.891188 -0:The maximum resident set size (KB) = 463220 +0:The total amount of wall time = 151.042524 +0:The maximum resident set size (KB) = 463288 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1641,14 +1873,14 @@ Checking test 037 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.829538 -0:The maximum resident set size (KB) = 1429928 +0:The total amount of wall time = 180.184390 +0:The maximum resident set size (KB) = 1429936 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1687,14 +1919,14 @@ Checking test 038 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.671441 -0:The maximum resident set size (KB) = 587132 +0:The total amount of wall time = 98.937914 +0:The maximum resident set size (KB) = 587176 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1741,14 +1973,14 @@ Checking test 039 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 181.663406 -0:The maximum resident set size (KB) = 1434152 +0:The total amount of wall time = 182.310945 +0:The maximum resident set size (KB) = 1433860 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1787,14 +2019,14 @@ Checking test 040 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 95.489148 -0:The maximum resident set size (KB) = 603284 +0:The total amount of wall time = 97.458315 +0:The maximum resident set size (KB) = 602836 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1837,14 +2069,14 @@ Checking test 041 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 187.780856 -0:The maximum resident set size (KB) = 1423672 +0:The total amount of wall time = 186.731133 +0:The maximum resident set size (KB) = 1423688 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1887,14 +2119,14 @@ Checking test 042 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.514966 -0:The maximum resident set size (KB) = 1513932 +0:The total amount of wall time = 170.828763 +0:The maximum resident set size (KB) = 1513836 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_p8_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1913,14 +2145,14 @@ Checking test 043 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.984952 -0:The maximum resident set size (KB) = 1430724 +0:The total amount of wall time = 330.450617 +0:The maximum resident set size (KB) = 1430788 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_p8_rrtmgp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_rrtmgp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +2199,14 @@ Checking test 044 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 246.772778 -0:The maximum resident set size (KB) = 1483468 +0:The total amount of wall time = 251.030614 +0:The maximum resident set size (KB) = 1483460 -Test 044 control_p8_rrtmgp_intel PASS Tries: 2 +Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_p8_mynn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_mynn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2021,14 +2253,14 @@ Checking test 045 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.928737 -0:The maximum resident set size (KB) = 1433060 +0:The total amount of wall time = 184.580605 +0:The maximum resident set size (KB) = 1433036 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/merra2_thompson_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/merra2_thompson_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2075,14 +2307,14 @@ Checking test 046 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.355869 -0:The maximum resident set size (KB) = 1436556 +0:The total amount of wall time = 199.922993 +0:The maximum resident set size (KB) = 1436168 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2093,28 +2325,28 @@ Checking test 047 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 333.067354 -0:The maximum resident set size (KB) = 609180 +0:The total amount of wall time = 337.701840 +0:The maximum resident set size (KB) = 609124 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_restart_intel Checking test 048 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.789604 -0:The maximum resident set size (KB) = 599612 +0:The total amount of wall time = 171.899635 +0:The maximum resident set size (KB) = 599260 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2125,28 +2357,28 @@ Checking test 049 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 333.321539 -0:The maximum resident set size (KB) = 609132 +0:The total amount of wall time = 335.759525 +0:The maximum resident set size (KB) = 608812 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_restart_qr_intel Checking test 050 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.890823 -0:The maximum resident set size (KB) = 599652 +0:The total amount of wall time = 170.768576 +0:The maximum resident set size (KB) = 599632 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2157,14 +2389,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 353.338649 -0:The maximum resident set size (KB) = 605560 +0:The total amount of wall time = 352.995027 +0:The maximum resident set size (KB) = 605608 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2175,14 +2407,14 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 194.057213 -0:The maximum resident set size (KB) = 619308 +0:The total amount of wall time = 194.290804 +0:The maximum resident set size (KB) = 619044 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_noquilt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_noquilt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2190,28 +2422,28 @@ Checking test 053 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 330.635227 -0:The maximum resident set size (KB) = 602476 +0:The total amount of wall time = 335.931479 +0:The maximum resident set size (KB) = 602920 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_netcdf_parallel_intel Checking test 054 regional_netcdf_parallel_intel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK -0:The total amount of wall time = 332.721504 -0:The maximum resident set size (KB) = 604216 +0:The total amount of wall time = 331.825180 +0:The maximum resident set size (KB) = 604148 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_2dwrtdecomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2222,14 +2454,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 333.070457 +0:The total amount of wall time = 337.617942 0:The maximum resident set size (KB) = 608800 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_wofs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/fv3_regional_wofs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2240,14 +2472,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 420.148502 -0:The maximum resident set size (KB) = 288152 +0:The total amount of wall time = 445.322971 +0:The maximum resident set size (KB) = 288516 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2294,14 +2526,14 @@ Checking test 057 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 467.248827 -0:The maximum resident set size (KB) = 837408 +0:The total amount of wall time = 466.394246 +0:The maximum resident set size (KB) = 837368 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2312,14 +2544,14 @@ Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 256.141301 -0:The maximum resident set size (KB) = 953004 +0:The total amount of wall time = 256.305614 +0:The maximum resident set size (KB) = 952852 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2366,14 +2598,14 @@ Checking test 059 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 488.394666 -0:The maximum resident set size (KB) = 837116 +0:The total amount of wall time = 488.146302 +0:The maximum resident set size (KB) = 837056 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2420,14 +2652,14 @@ Checking test 060 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 448.874969 -0:The maximum resident set size (KB) = 914632 +0:The total amount of wall time = 447.699580 +0:The maximum resident set size (KB) = 911384 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2466,14 +2698,14 @@ Checking test 061 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 234.708327 -0:The maximum resident set size (KB) = 574684 +0:The total amount of wall time = 237.202877 +0:The maximum resident set size (KB) = 574556 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2520,14 +2752,14 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 467.800831 -0:The maximum resident set size (KB) = 837356 +0:The total amount of wall time = 468.486356 +0:The maximum resident set size (KB) = 837324 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2574,14 +2806,14 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 486.514163 -0:The maximum resident set size (KB) = 837036 +0:The total amount of wall time = 494.183637 +0:The maximum resident set size (KB) = 836952 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2620,14 +2852,14 @@ Checking test 064 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 346.302532 -0:The maximum resident set size (KB) = 580108 +0:The total amount of wall time = 346.598244 +0:The maximum resident set size (KB) = 579984 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2674,14 +2906,14 @@ Checking test 065 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 446.673306 -0:The maximum resident set size (KB) = 835216 +0:The total amount of wall time = 446.608165 +0:The maximum resident set size (KB) = 835112 Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_qr_intel Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2728,14 +2960,14 @@ Checking test 066 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 447.083769 -0:The maximum resident set size (KB) = 842252 +0:The total amount of wall time = 447.191922 +0:The maximum resident set size (KB) = 842184 Test 066 hrrr_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2782,14 +3014,14 @@ Checking test 067 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 467.476023 -0:The maximum resident set size (KB) = 834404 +0:The total amount of wall time = 464.841563 +0:The maximum resident set size (KB) = 834328 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2836,42 +3068,42 @@ Checking test 068 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.300837 -0:The maximum resident set size (KB) = 908176 +0:The total amount of wall time = 509.829906 +0:The maximum resident set size (KB) = 902252 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_intel Checking test 069 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 332.415118 -0:The maximum resident set size (KB) = 570996 +0:The total amount of wall time = 333.197697 +0:The maximum resident set size (KB) = 570860 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_qr_intel Checking test 070 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 329.662691 -0:The maximum resident set size (KB) = 611924 +0:The total amount of wall time = 337.275970 +0:The maximum resident set size (KB) = 611792 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_v1beta_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2918,14 +3150,14 @@ Checking test 071 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 458.187383 -0:The maximum resident set size (KB) = 835676 +0:The total amount of wall time = 458.049903 +0:The maximum resident set size (KB) = 835568 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_v1nssl_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +3172,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 571.015417 -0:The maximum resident set size (KB) = 517400 +0:The total amount of wall time = 571.822820 +0:The maximum resident set size (KB) = 517360 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2962,14 +3194,14 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 552.602658 -0:The maximum resident set size (KB) = 511552 +0:The total amount of wall time = 554.608251 +0:The maximum resident set size (KB) = 511480 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2985,14 +3217,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 156.221264 -0:The maximum resident set size (KB) = 687536 +0:The total amount of wall time = 154.076059 +0:The maximum resident set size (KB) = 687500 Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3001,14 +3233,14 @@ Checking test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 95.306635 -0:The maximum resident set size (KB) = 706216 +0:The total amount of wall time = 96.783576 +0:The maximum resident set size (KB) = 706064 Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_conus13km_hrrr_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_conus13km_hrrr_warm_intel Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3024,14 +3256,14 @@ Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 138.978883 -0:The maximum resident set size (KB) = 664960 +0:The total amount of wall time = 141.835866 +0:The maximum resident set size (KB) = 664852 Test 076 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 077 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3040,26 +3272,26 @@ Checking test 077 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 156.003601 -0:The maximum resident set size (KB) = 688640 +0:The total amount of wall time = 157.981760 +0:The maximum resident set size (KB) = 688520 Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 87.640487 -0:The maximum resident set size (KB) = 685944 +0:The total amount of wall time = 89.500624 +0:The maximum resident set size (KB) = 685804 Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_csawmg_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_csawmg_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3070,14 +3302,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 374.238200 -0:The maximum resident set size (KB) = 534260 +0:The total amount of wall time = 391.248294 +0:The maximum resident set size (KB) = 534228 Test 079 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_csawmgt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3088,14 +3320,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 386.870516 -0:The maximum resident set size (KB) = 532780 +0:The total amount of wall time = 386.049401 +0:The maximum resident set size (KB) = 532756 Test 080 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_ras_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_ras_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3106,26 +3338,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 207.498605 -0:The maximum resident set size (KB) = 497296 +0:The total amount of wall time = 207.972643 +0:The maximum resident set size (KB) = 497292 Test 081 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_wam_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_wam_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.282136 -0:The maximum resident set size (KB) = 212488 +0:The total amount of wall time = 123.976415 +0:The maximum resident set size (KB) = 212424 Test 082 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_p8_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3172,14 +3404,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.988103 -0:The maximum resident set size (KB) = 1429828 +0:The total amount of wall time = 171.509375 +0:The maximum resident set size (KB) = 1429732 Test 083 control_p8_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_control_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_control_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3190,56 +3422,56 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 311.149458 -0:The maximum resident set size (KB) = 608952 +0:The total amount of wall time = 317.947362 +0:The maximum resident set size (KB) = 608968 Test 084 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 877.856261 -0:The maximum resident set size (KB) = 718472 +0:The total amount of wall time = 887.480091 +0:The maximum resident set size (KB) = 718508 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 499.127090 -0:The maximum resident set size (KB) = 738344 +0:The total amount of wall time = 505.170325 +0:The maximum resident set size (KB) = 738428 Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_conus13km_hrrr_warm_debug_intel Checking test 087 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 786.392111 -0:The maximum resident set size (KB) = 688940 +0:The total amount of wall time = 792.333598 +0:The maximum resident set size (KB) = 688976 Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_CubedSphereGrid_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3266,348 +3498,348 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 156.095778 -0:The maximum resident set size (KB) = 626648 +0:The total amount of wall time = 156.460226 +0:The maximum resident set size (KB) = 626628 -Test 088 control_CubedSphereGrid_debug_intel PASS Tries: 2 +Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 155.918818 -0:The maximum resident set size (KB) = 626844 +0:The total amount of wall time = 159.737867 +0:The maximum resident set size (KB) = 626804 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_stochy_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.272583 -0:The maximum resident set size (KB) = 630812 +0:The total amount of wall time = 177.413724 +0:The maximum resident set size (KB) = 630144 Test 090 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_lndp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.407911 -0:The maximum resident set size (KB) = 629688 +0:The total amount of wall time = 161.234251 +0:The maximum resident set size (KB) = 629728 Test 091 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_csawmg_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_csawmg_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.374515 +0:The total amount of wall time = 248.929723 0:The maximum resident set size (KB) = 671564 Test 092 control_csawmg_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_csawmgt_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.034820 -0:The maximum resident set size (KB) = 671988 +0:The total amount of wall time = 244.961019 +0:The maximum resident set size (KB) = 672000 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_ras_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_ras_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.571458 -0:The maximum resident set size (KB) = 638332 +0:The total amount of wall time = 159.204395 +0:The maximum resident set size (KB) = 638392 Test 094 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_diag_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.630568 -0:The maximum resident set size (KB) = 680396 +0:The total amount of wall time = 159.638304 +0:The maximum resident set size (KB) = 680424 Test 095 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.607600 -0:The maximum resident set size (KB) = 1447864 +0:The total amount of wall time = 178.010120 +0:The maximum resident set size (KB) = 1447868 Test 096 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1041.730771 -0:The maximum resident set size (KB) = 630372 +0:The total amount of wall time = 1039.033957 +0:The maximum resident set size (KB) = 629728 Test 097 regional_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.691494 -0:The maximum resident set size (KB) = 1002028 +0:The total amount of wall time = 286.494354 +0:The maximum resident set size (KB) = 1002000 Test 098 rap_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.892684 -0:The maximum resident set size (KB) = 998276 +0:The total amount of wall time = 279.933622 +0:The maximum resident set size (KB) = 998244 Test 099 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_unified_drag_suite_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_unified_drag_suite_debug_intel Checking test 100 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.126016 -0:The maximum resident set size (KB) = 1002068 +0:The total amount of wall time = 286.613681 +0:The maximum resident set size (KB) = 1002020 Test 100 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_diag_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_diag_debug_intel Checking test 101 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.957290 -0:The maximum resident set size (KB) = 1083316 +0:The total amount of wall time = 298.180974 +0:The maximum resident set size (KB) = 1083256 Test 101 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_cires_ugwp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_cires_ugwp_debug_intel Checking test 102 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.519811 -0:The maximum resident set size (KB) = 1001936 +0:The total amount of wall time = 295.513470 +0:The maximum resident set size (KB) = 1001948 Test 102 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_unified_ugwp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_unified_ugwp_debug_intel Checking test 103 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.750879 -0:The maximum resident set size (KB) = 1002148 +0:The total amount of wall time = 292.661661 +0:The maximum resident set size (KB) = 1002096 Test 103 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_lndp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_lndp_debug_intel Checking test 104 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.648490 -0:The maximum resident set size (KB) = 1002832 +0:The total amount of wall time = 308.041585 +0:The maximum resident set size (KB) = 1002816 Test 104 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_progcld_thompson_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_progcld_thompson_debug_intel Checking test 105 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.497692 -0:The maximum resident set size (KB) = 1002032 +0:The total amount of wall time = 288.254421 +0:The maximum resident set size (KB) = 1001980 Test 105 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_noah_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_noah_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_noah_debug_intel Checking test 106 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.622584 -0:The maximum resident set size (KB) = 1000680 +0:The total amount of wall time = 287.582735 +0:The maximum resident set size (KB) = 1000572 Test 106 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_debug_intel Checking test 107 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.974428 -0:The maximum resident set size (KB) = 1001896 +0:The total amount of wall time = 292.608723 +0:The maximum resident set size (KB) = 1002420 Test 107 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 470.471090 -0:The maximum resident set size (KB) = 1000332 +0:The total amount of wall time = 473.474076 +0:The maximum resident set size (KB) = 1000336 Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_v1beta_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_v1beta_debug_intel Checking test 109 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.455118 -0:The maximum resident set size (KB) = 998640 +0:The total amount of wall time = 286.457057 +0:The maximum resident set size (KB) = 998652 Test 109 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_clm_lake_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_clm_lake_debug_intel Checking test 110 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 348.489816 -0:The maximum resident set size (KB) = 1004460 +0:The total amount of wall time = 355.892645 +0:The maximum resident set size (KB) = 1004440 Test 110 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_flake_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_flake_debug_intel Checking test 111 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.015763 -0:The maximum resident set size (KB) = 1001928 +0:The total amount of wall time = 293.293697 +0:The maximum resident set size (KB) = 1001968 Test 111 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_wam_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_wam_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.915132 -0:The maximum resident set size (KB) = 242612 +0:The total amount of wall time = 294.626995 +0:The maximum resident set size (KB) = 242596 Test 112 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3618,14 +3850,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 243.029547 -0:The maximum resident set size (KB) = 848784 +0:The total amount of wall time = 241.810620 +0:The maximum resident set size (KB) = 848652 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3672,14 +3904,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 390.088690 -0:The maximum resident set size (KB) = 722608 +0:The total amount of wall time = 385.118363 +0:The maximum resident set size (KB) = 722600 Test 114 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3726,14 +3958,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 199.931519 -0:The maximum resident set size (KB) = 721200 +0:The total amount of wall time = 201.528064 +0:The maximum resident set size (KB) = 721228 Test 115 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_qr_dyn32_phy32_intel Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3780,14 +4012,14 @@ Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 198.535683 -0:The maximum resident set size (KB) = 725140 +0:The total amount of wall time = 204.960516 +0:The maximum resident set size (KB) = 725144 Test 116 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_2threads_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_2threads_dyn32_phy32_intel Checking test 117 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3834,14 +4066,14 @@ Checking test 117 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 371.792560 -0:The maximum resident set size (KB) = 771836 +0:The total amount of wall time = 372.122691 +0:The maximum resident set size (KB) = 771948 Test 117 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_2threads_dyn32_phy32_intel Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3888,14 +4120,14 @@ Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 277.286917 -0:The maximum resident set size (KB) = 766420 +0:The total amount of wall time = 276.944532 +0:The maximum resident set size (KB) = 766616 Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_decomp_dyn32_phy32_intel Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3942,14 +4174,14 @@ Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.824586 -0:The maximum resident set size (KB) = 720800 +0:The total amount of wall time = 210.519726 +0:The maximum resident set size (KB) = 720824 Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_restart_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_restart_dyn32_phy32_intel Checking test 120 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3988,42 +4220,42 @@ Checking test 120 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 281.055091 -0:The maximum resident set size (KB) = 549828 +0:The total amount of wall time = 285.711109 +0:The maximum resident set size (KB) = 549844 Test 120 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_dyn32_phy32_intel Checking test 121 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 104.065480 -0:The maximum resident set size (KB) = 539732 +0:The total amount of wall time = 104.828158 +0:The maximum resident set size (KB) = 539752 Test 121 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 122 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 106.552020 -0:The maximum resident set size (KB) = 571408 +0:The total amount of wall time = 108.370667 +0:The maximum resident set size (KB) = 569840 Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_fast_phy32_intel Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4039,26 +4271,26 @@ Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 128.147928 -0:The maximum resident set size (KB) = 629180 +0:The total amount of wall time = 127.268356 +0:The maximum resident set size (KB) = 629184 Test 123 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 72.753937 -0:The maximum resident set size (KB) = 623268 +0:The total amount of wall time = 73.357178 +0:The maximum resident set size (KB) = 623280 Test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_dyn64_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_dyn64_phy32_intel Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4105,81 +4337,81 @@ Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 265.370268 -0:The maximum resident set size (KB) = 741756 +0:The total amount of wall time = 267.145423 +0:The maximum resident set size (KB) = 741792 Test 125 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_debug_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_debug_dyn32_phy32_intel Checking test 126 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.635321 -0:The maximum resident set size (KB) = 888132 +0:The total amount of wall time = 288.090362 +0:The maximum resident set size (KB) = 888168 Test 126 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_debug_dyn32_phy32_intel Checking test 127 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 274.912483 +0:The total amount of wall time = 279.571637 0:The maximum resident set size (KB) = 885652 Test 127 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_dyn64_phy32_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_dyn64_phy32_debug_intel Checking test 128 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.665891 -0:The maximum resident set size (KB) = 908072 +0:The total amount of wall time = 289.745781 +0:The maximum resident set size (KB) = 908108 Test 128 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_atm_intel Checking test 129 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 246.301982 -0:The maximum resident set size (KB) = 754692 +0:The total amount of wall time = 246.875954 +0:The maximum resident set size (KB) = 759852 Test 129 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_atm_thompson_gfdlsf_intel Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 290.293782 -0:The maximum resident set size (KB) = 1115088 +0:The total amount of wall time = 279.073812 +0:The maximum resident set size (KB) = 1115620 Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_atm_ocn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_atm_ocn_intel Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4188,14 +4420,14 @@ Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 450.139762 -0:The maximum resident set size (KB) = 766308 +0:The total amount of wall time = 457.320564 +0:The maximum resident set size (KB) = 766660 Test 131 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_atm_wav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_atm_wav_intel Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4204,14 +4436,14 @@ Checking test 132 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1086.978442 -0:The maximum resident set size (KB) = 790636 +0:The total amount of wall time = 1084.427623 +0:The maximum resident set size (KB) = 797172 Test 132 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_atm_ocn_wav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_atm_ocn_wav_intel Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4222,14 +4454,14 @@ Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1080.319775 -0:The maximum resident set size (KB) = 824768 +0:The total amount of wall time = 1156.173374 +0:The maximum resident set size (KB) = 824320 Test 133 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_1nest_atm_intel Checking test 134 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4251,14 +4483,14 @@ Checking test 134 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -0:The total amount of wall time = 349.772647 -0:The maximum resident set size (KB) = 311080 +0:The total amount of wall time = 351.698627 +0:The maximum resident set size (KB) = 310836 Test 134 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4267,14 +4499,14 @@ Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 398.560674 -0:The maximum resident set size (KB) = 337052 +0:The total amount of wall time = 401.722831 +0:The maximum resident set size (KB) = 332780 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_global_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4321,47 +4553,132 @@ Checking test 136 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -0:The total amount of wall time = 160.711101 -0:The maximum resident set size (KB) = 220636 +0:The total amount of wall time = 164.071324 +0:The maximum resident set size (KB) = 219784 Test 136 hafs_global_1nest_atm_intel PASS -Test 137 hafs_global_multiple_4nests_atm_intel FAIL - -Test 137 hafs_global_multiple_4nests_atm_intel FAIL - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_specified_moving_1nest_atm_intel -Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_global_multiple_4nests_atm_intel +Checking test 137 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - -0:The total amount of wall time = 227.979200 -0:The maximum resident set size (KB) = 332052 - -Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_storm_following_1nest_atm_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + +0:The total amount of wall time = 447.882088 +0:The maximum resident set size (KB) = 309732 + +Test 137 hafs_global_multiple_4nests_atm_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_specified_moving_1nest_atm_intel +Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + +0:The total amount of wall time = 228.178679 +0:The maximum resident set size (KB) = 332360 + +Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_storm_following_1nest_atm_intel +Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK @@ -4370,14 +4687,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -0:The total amount of wall time = 212.282406 -0:The maximum resident set size (KB) = 332504 +0:The total amount of wall time = 213.717371 +0:The maximum resident set size (KB) = 332512 Test 139 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4386,36 +4703,60 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 277.734937 -0:The maximum resident set size (KB) = 391084 +0:The total amount of wall time = 277.550466 +0:The maximum resident set size (KB) = 391784 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_global_storm_following_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_global_storm_following_1nest_atm_intel Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 63.928807 -0:The maximum resident set size (KB) = 241356 +0:The total amount of wall time = 62.656023 +0:The maximum resident set size (KB) = 241352 Test 141 hafs_global_storm_following_1nest_atm_intel PASS -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel FAIL -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + +0:The total amount of wall time = 764.956409 +0:The maximum resident set size (KB) = 410120 + +Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel FAIL +0:The total amount of wall time = 714.495357 +0:The maximum resident set size (KB) = 449148 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel FAIL +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_docn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4423,14 +4764,14 @@ Checking test 144 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 373.302811 -0:The maximum resident set size (KB) = 779336 +0:The total amount of wall time = 377.200946 +0:The maximum resident set size (KB) = 779212 Test 144 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_docn_oisst_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4438,131 +4779,131 @@ Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 375.053399 -0:The maximum resident set size (KB) = 757708 +0:The total amount of wall time = 384.060079 +0:The maximum resident set size (KB) = 756432 Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hafs_regional_datm_cdeps_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hafs_regional_datm_cdeps_intel Checking test 146 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1163.348368 +0:The total amount of wall time = 1161.564582 0:The maximum resident set size (KB) = 857440 Test 146 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_control_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_control_cfsr_intel Checking test 147 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.692570 -0:The maximum resident set size (KB) = 719384 +0:The total amount of wall time = 166.513920 +0:The maximum resident set size (KB) = 719420 -Test 147 datm_cdeps_control_cfsr_intel PASS +Test 147 datm_cdeps_control_cfsr_intel PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_restart_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_restart_cfsr_intel Checking test 148 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 98.519684 -0:The maximum resident set size (KB) = 707796 +0:The total amount of wall time = 101.124247 +0:The maximum resident set size (KB) = 707548 Test 148 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_control_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_control_gefs_intel Checking test 149 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 153.838326 -0:The maximum resident set size (KB) = 610856 +0:The total amount of wall time = 158.465153 +0:The maximum resident set size (KB) = 610808 Test 149 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_iau_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_iau_gefs_intel Checking test 150 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.993809 -0:The maximum resident set size (KB) = 610832 +0:The total amount of wall time = 157.352082 +0:The maximum resident set size (KB) = 610824 Test 150 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_stochy_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_stochy_gefs_intel Checking test 151 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 157.139659 -0:The maximum resident set size (KB) = 610808 +0:The total amount of wall time = 156.877938 +0:The maximum resident set size (KB) = 610804 Test 151 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_ciceC_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_ciceC_cfsr_intel Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.817662 -0:The maximum resident set size (KB) = 719392 +0:The total amount of wall time = 160.572505 +0:The maximum resident set size (KB) = 719412 Test 152 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_bulk_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_bulk_cfsr_intel Checking test 153 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.313793 -0:The maximum resident set size (KB) = 719356 +0:The total amount of wall time = 168.142262 +0:The maximum resident set size (KB) = 719384 Test 153 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_bulk_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_bulk_gefs_intel Checking test 154 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 158.183261 -0:The maximum resident set size (KB) = 610836 +0:The total amount of wall time = 157.580451 +0:The maximum resident set size (KB) = 610848 Test 154 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_mx025_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_mx025_cfsr_intel Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4571,14 +4912,14 @@ Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 415.172472 -0:The maximum resident set size (KB) = 565640 +0:The total amount of wall time = 432.546657 +0:The maximum resident set size (KB) = 565632 Test 155 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_mx025_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_mx025_gefs_intel Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4587,77 +4928,77 @@ Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 402.469568 -0:The maximum resident set size (KB) = 501476 +0:The total amount of wall time = 418.156653 +0:The maximum resident set size (KB) = 501496 Test 156 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_multiple_files_cfsr_intel Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.819127 -0:The maximum resident set size (KB) = 719412 +0:The total amount of wall time = 166.939477 +0:The maximum resident set size (KB) = 719432 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_3072x1536_cfsr_intel Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 250.417909 -0:The maximum resident set size (KB) = 1969012 +0:The total amount of wall time = 251.562314 +0:The maximum resident set size (KB) = 1969056 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_gfs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_gfs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_gfs_intel Checking test 159 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 277.441242 -0:The maximum resident set size (KB) = 1969008 +0:The total amount of wall time = 278.769152 +0:The maximum resident set size (KB) = 1969028 Test 159 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_debug_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_debug_cfsr_intel Checking test 160 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 370.279280 -0:The maximum resident set size (KB) = 703064 +0:The total amount of wall time = 369.359615 +0:The maximum resident set size (KB) = 703036 Test 160 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_control_cfsr_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_control_cfsr_faster_intel Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.898687 -0:The maximum resident set size (KB) = 719400 +0:The total amount of wall time = 166.516298 +0:The maximum resident set size (KB) = 719356 Test 161 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_lnd_gswp3_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_lnd_gswp3_intel Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4666,14 +5007,14 @@ Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 9.419082 -0:The maximum resident set size (KB) = 133296 +0:The total amount of wall time = 9.872783 +0:The maximum resident set size (KB) = 139600 Test 162 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_lnd_gswp3_rst_intel Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4682,18 +5023,106 @@ Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 13.137528 -0:The maximum resident set size (KB) = 139580 +0:The total amount of wall time = 13.905490 +0:The maximum resident set size (KB) = 139540 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS -Test 164 control_p8_atmlnd_sbs_intel FAIL -Test 164 control_p8_atmlnd_sbs_intel FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_atmlnd_sbs_intel +Checking test 164 control_p8_atmlnd_sbs_intel results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +0:The total amount of wall time = 235.388864 +0:The maximum resident set size (KB) = 1470148 + +Test 164 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/atmwav_control_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/atmwav_control_noaero_p8_intel Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4736,14 +5165,14 @@ Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.098651 +0:The total amount of wall time = 104.233076 0:The maximum resident set size (KB) = 1446424 Test 165 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_atmwav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_atmwav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_atmwav_intel Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4787,14 +5216,14 @@ Checking test 166 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.206017 -0:The maximum resident set size (KB) = 481264 +0:The total amount of wall time = 102.867830 +0:The maximum resident set size (KB) = 481200 Test 166 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/atmaero_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/atmaero_control_p8_intel Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4838,14 +5267,14 @@ Checking test 167 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.744860 -0:The maximum resident set size (KB) = 2743580 +0:The total amount of wall time = 255.991503 +0:The maximum resident set size (KB) = 2747328 Test 167 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/atmaero_control_p8_rad_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/atmaero_control_p8_rad_intel Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4889,14 +5318,14 @@ Checking test 168 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.523383 -0:The maximum resident set size (KB) = 2788884 +0:The total amount of wall time = 308.698758 +0:The maximum resident set size (KB) = 2788832 Test 168 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/atmaero_control_p8_rad_micro_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/atmaero_control_p8_rad_micro_intel Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4940,18 +5369,60 @@ Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.022544 -0:The maximum resident set size (KB) = 2793384 +0:The total amount of wall time = 314.230092 +0:The maximum resident set size (KB) = 2789828 Test 169 atmaero_control_p8_rad_micro_intel PASS -Test 170 regional_atmaq_intel FAIL -Test 171 regional_atmaq_faster_intel FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_atmaq_intel +Checking test 170 regional_atmaq_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +0:The total amount of wall time = 688.242949 +0:The maximum resident set size (KB) = 2035468 + +Test 170 regional_atmaq_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_atmaq_faster_intel +Checking test 171 regional_atmaq_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +0:The total amount of wall time = 635.517039 +0:The maximum resident set size (KB) = 2035224 + +Test 171 regional_atmaq_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_c48_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_c48_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_c48_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_c48_gnu Checking test 172 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4990,14 +5461,14 @@ Checking test 172 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 819.750468 -0:The maximum resident set size (KB) = 667636 +0:The total amount of wall time = 822.161547 +0:The maximum resident set size (KB) = 667632 Test 172 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_stochy_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_stochy_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_stochy_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_stochy_gnu Checking test 173 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5008,14 +5479,14 @@ Checking test 173 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.423833 -0:The maximum resident set size (KB) = 453324 +0:The total amount of wall time = 178.889914 +0:The maximum resident set size (KB) = 453320 Test 173 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_ras_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_ras_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_ras_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_ras_gnu Checking test 174 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5026,14 +5497,14 @@ Checking test 174 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 296.471182 -0:The maximum resident set size (KB) = 461764 +0:The total amount of wall time = 293.976711 +0:The maximum resident set size (KB) = 461472 Test 174 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_p8_gnu Checking test 175 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5080,14 +5551,14 @@ Checking test 175 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 312.355090 -0:The maximum resident set size (KB) = 1235216 +0:The total amount of wall time = 313.956757 +0:The maximum resident set size (KB) = 1235236 Test 175 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_flake_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_flake_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_flake_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_flake_gnu Checking test 176 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5098,14 +5569,14 @@ Checking test 176 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 355.543711 -0:The maximum resident set size (KB) = 500884 +0:The total amount of wall time = 343.761622 +0:The maximum resident set size (KB) = 501052 Test 176 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_gnu Checking test 177 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5152,14 +5623,14 @@ Checking test 177 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.390956 -0:The maximum resident set size (KB) = 801992 +0:The total amount of wall time = 710.117166 +0:The maximum resident set size (KB) = 801972 Test 177 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_decomp_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_decomp_gnu Checking test 178 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5206,14 +5677,14 @@ Checking test 178 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.759053 -0:The maximum resident set size (KB) = 802348 +0:The total amount of wall time = 713.899468 +0:The maximum resident set size (KB) = 802376 Test 178 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_2threads_gnu Checking test 179 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5260,14 +5731,14 @@ Checking test 179 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 651.211064 -0:The maximum resident set size (KB) = 876220 +0:The total amount of wall time = 648.323832 +0:The maximum resident set size (KB) = 876092 Test 179 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_restart_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_restart_gnu Checking test 180 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5306,14 +5777,14 @@ Checking test 180 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.859485 -0:The maximum resident set size (KB) = 546684 +0:The total amount of wall time = 352.137673 +0:The maximum resident set size (KB) = 547036 Test 180 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_gnu Checking test 181 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5360,14 +5831,14 @@ Checking test 181 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.349478 -0:The maximum resident set size (KB) = 801900 +0:The total amount of wall time = 709.779601 +0:The maximum resident set size (KB) = 801756 Test 181 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_decomp_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_decomp_gnu Checking test 182 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5414,14 +5885,14 @@ Checking test 182 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.086281 -0:The maximum resident set size (KB) = 802260 +0:The total amount of wall time = 720.906615 +0:The maximum resident set size (KB) = 802028 Test 182 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_sfcdiff_restart_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_sfcdiff_restart_gnu Checking test 183 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -5460,14 +5931,14 @@ Checking test 183 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 529.683918 -0:The maximum resident set size (KB) = 552472 +0:The total amount of wall time = 525.312798 +0:The maximum resident set size (KB) = 552284 Test 183 rap_sfcdiff_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_gnu Checking test 184 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5514,14 +5985,14 @@ Checking test 184 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.118604 -0:The maximum resident set size (KB) = 799360 +0:The total amount of wall time = 685.914844 +0:The maximum resident set size (KB) = 799448 Test 184 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_qr_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_qr_gnu Checking test 185 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5568,14 +6039,14 @@ Checking test 185 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 685.339231 -0:The maximum resident set size (KB) = 812288 +0:The total amount of wall time = 686.134196 +0:The maximum resident set size (KB) = 812148 Test 185 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_2threads_gnu Checking test 186 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5622,14 +6093,14 @@ Checking test 186 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.296734 -0:The maximum resident set size (KB) = 865276 +0:The total amount of wall time = 707.225720 +0:The maximum resident set size (KB) = 865488 Test 186 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_decomp_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_decomp_gnu Checking test 187 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5676,42 +6147,42 @@ Checking test 187 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 682.260516 -0:The maximum resident set size (KB) = 798844 +0:The total amount of wall time = 680.926784 +0:The maximum resident set size (KB) = 799324 Test 187 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_gnu Checking test 188 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 511.917312 -0:The maximum resident set size (KB) = 550816 +0:The total amount of wall time = 505.505972 +0:The maximum resident set size (KB) = 549520 Test 188 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_qr_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_qr_gnu Checking test 189 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 514.235443 -0:The maximum resident set size (KB) = 578696 +0:The total amount of wall time = 518.628571 +0:The maximum resident set size (KB) = 578640 Test 189 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_v1beta_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_v1beta_gnu Checking test 190 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5758,14 +6229,14 @@ Checking test 190 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.644468 -0:The maximum resident set size (KB) = 799436 +0:The total amount of wall time = 696.191025 +0:The maximum resident set size (KB) = 799420 Test 190 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5781,14 +6252,14 @@ Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 240.060133 -0:The maximum resident set size (KB) = 642812 +0:The total amount of wall time = 238.429122 +0:The maximum resident set size (KB) = 642884 Test 191 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5797,14 +6268,14 @@ Checking test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 150.303107 -0:The maximum resident set size (KB) = 661652 +0:The total amount of wall time = 150.869800 +0:The maximum resident set size (KB) = 667096 Test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5813,14 +6284,14 @@ Checking test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 241.972497 -0:The maximum resident set size (KB) = 652440 +0:The total amount of wall time = 241.471231 +0:The maximum resident set size (KB) = 652476 Test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_conus13km_hrrr_warm_gnu Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5836,262 +6307,262 @@ Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 219.906189 -0:The maximum resident set size (KB) = 630668 +0:The total amount of wall time = 217.897063 +0:The maximum resident set size (KB) = 630652 Test 194 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 195 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 133.450015 +0:The total amount of wall time = 132.429301 0:The maximum resident set size (KB) = 630348 Test 195 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_diag_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_diag_debug_gnu Checking test 196 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.833475 -0:The maximum resident set size (KB) = 502012 +0:The total amount of wall time = 82.646216 +0:The maximum resident set size (KB) = 502536 Test 196 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/regional_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/regional_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/regional_debug_gnu Checking test 197 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.952291 -0:The maximum resident set size (KB) = 584640 +0:The total amount of wall time = 474.453080 +0:The maximum resident set size (KB) = 584604 Test 197 regional_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_debug_gnu Checking test 198 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.402440 +0:The total amount of wall time = 145.727650 0:The maximum resident set size (KB) = 815736 Test 198 rap_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_debug_gnu Checking test 199 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.552852 -0:The maximum resident set size (KB) = 812172 +0:The total amount of wall time = 142.330733 +0:The maximum resident set size (KB) = 812072 Test 199 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_diag_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_diag_debug_gnu Checking test 200 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.650818 -0:The maximum resident set size (KB) = 898916 +0:The total amount of wall time = 152.381814 +0:The maximum resident set size (KB) = 899320 Test 200 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 235.245241 -0:The maximum resident set size (KB) = 815040 +0:The total amount of wall time = 234.040450 +0:The maximum resident set size (KB) = 814956 Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_progcld_thompson_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_progcld_thompson_debug_gnu Checking test 202 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.415605 -0:The maximum resident set size (KB) = 816684 +0:The total amount of wall time = 143.859364 +0:The maximum resident set size (KB) = 816404 Test 202 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_v1beta_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_v1beta_debug_gnu Checking test 203 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.992662 -0:The maximum resident set size (KB) = 811884 +0:The total amount of wall time = 143.480501 +0:The maximum resident set size (KB) = 811960 Test 203 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_ras_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_ras_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_ras_debug_gnu Checking test 204 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.434603 +0:The total amount of wall time = 81.030671 0:The maximum resident set size (KB) = 456088 Test 204 control_ras_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_stochy_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_stochy_debug_gnu Checking test 205 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.239332 -0:The maximum resident set size (KB) = 448812 +0:The total amount of wall time = 88.974089 +0:The maximum resident set size (KB) = 449176 Test 205 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_debug_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_debug_p8_gnu Checking test 206 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.845920 -0:The maximum resident set size (KB) = 1231064 +0:The total amount of wall time = 91.021283 +0:The maximum resident set size (KB) = 1230960 Test 206 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 451.412757 -0:The maximum resident set size (KB) = 648500 +0:The total amount of wall time = 440.807904 +0:The maximum resident set size (KB) = 648468 Test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 263.931223 -0:The maximum resident set size (KB) = 667180 +0:The total amount of wall time = 258.542116 +0:The maximum resident set size (KB) = 667164 -Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS Tries: 2 +Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 209 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 404.477297 -0:The maximum resident set size (KB) = 635880 +0:The total amount of wall time = 400.519761 +0:The maximum resident set size (KB) = 635840 Test 209 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_flake_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_flake_debug_gnu Checking test 210 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.401214 -0:The maximum resident set size (KB) = 816764 +0:The total amount of wall time = 144.796935 +0:The maximum resident set size (KB) = 816852 Test 210 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_clm_lake_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_clm_lake_debug_gnu Checking test 211 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.909374 -0:The maximum resident set size (KB) = 818612 +0:The total amount of wall time = 168.657308 +0:The maximum resident set size (KB) = 818556 Test 211 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/control_wam_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/control_wam_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/control_wam_debug_gnu Checking test 212 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.163193 -0:The maximum resident set size (KB) = 192672 +0:The total amount of wall time = 139.181338 +0:The maximum resident set size (KB) = 192396 Test 212 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_dyn32_phy32_gnu Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6138,14 +6609,14 @@ Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.206827 -0:The maximum resident set size (KB) = 682512 +0:The total amount of wall time = 701.846224 +0:The maximum resident set size (KB) = 682364 Test 213 rap_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_dyn32_phy32_gnu Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6192,14 +6663,14 @@ Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.284172 -0:The maximum resident set size (KB) = 681208 +0:The total amount of wall time = 353.212736 +0:The maximum resident set size (KB) = 680876 Test 214 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_qr_dyn32_phy32_gnu Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6246,807 +6717,15 @@ Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.596578 -0:The maximum resident set size (KB) = 691648 +0:The total amount of wall time = 353.756674 +0:The maximum resident set size (KB) = 691748 Test 215 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 351.411171 -0:The maximum resident set size (KB) = 680140 - -Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/hrrr_control_restart_dyn32_phy32_gnu -Checking test 220 hrrr_control_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 181.735167 -0:The maximum resident set size (KB) = 514008 - -Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/rap_control_dyn64_phy32_debug_gnu -Checking test 227 rap_control_dyn64_phy32_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 147.543506 -0:The maximum resident set size (KB) = 717168 - -Test 227 rap_control_dyn64_phy32_debug_gnu PASS Tries: 2 - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_68410/datm_cdeps_control_cfsr_gnu -Checking test 233 datm_cdeps_control_cfsr_gnu results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 181.730213 -0:The maximum resident set size (KB) = 678780 - -Test 233 datm_cdeps_control_cfsr_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/cpld_control_p8_intel -Checking test 001 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 315.198675 -0:The maximum resident set size (KB) = 2761364 - -Test 001 cpld_control_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/cpld_restart_p8_intel -Checking test 002 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 184.593558 -0:The maximum resident set size (KB) = 2621544 - -Test 002 cpld_restart_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/cpld_control_qr_p8_intel -Checking test 003 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 326.471282 -0:The maximum resident set size (KB) = 2765212 - -Test 003 cpld_control_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/cpld_restart_qr_p8_intel -Checking test 004 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 183.167795 -0:The maximum resident set size (KB) = 2671504 - -Test 004 cpld_restart_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/cpld_control_c192_p8_intel -Checking test 005 cpld_control_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 747.857367 -0:The maximum resident set size (KB) = 3508620 - -Test 005 cpld_control_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/cpld_restart_c192_p8_intel -Checking test 006 cpld_restart_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 365.148696 -0:The maximum resident set size (KB) = 3323652 - -Test 006 cpld_restart_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/hafs_global_multiple_4nests_atm_intel -Checking test 007 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -0:The total amount of wall time = 457.439770 -0:The maximum resident set size (KB) = 309764 - -Test 007 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 008 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -0:The total amount of wall time = 764.650930 -0:The maximum resident set size (KB) = 411348 - -Test 008 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 009 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 730.714959 -0:The maximum resident set size (KB) = 449560 - -Test 009 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/control_p8_atmlnd_sbs_intel -Checking test 010 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - -0:The total amount of wall time = 232.683499 -0:The maximum resident set size (KB) = 1470168 - -Test 010 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/regional_atmaq_intel -Checking test 011 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 644.919216 -0:The maximum resident set size (KB) = 2038164 - -Test 011 regional_atmaq_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/regional_atmaq_faster_intel -Checking test 012 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 624.466314 -0:The maximum resident set size (KB) = 2035336 - -Test 012 regional_atmaq_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/rap_control_dyn32_phy32_gnu -Checking test 013 rap_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 701.537062 -0:The maximum resident set size (KB) = 682260 - -Test 013 rap_control_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/rap_2threads_dyn32_phy32_gnu -Checking test 014 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_2threads_dyn32_phy32_gnu +Checking test 216 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7092,15 +6771,15 @@ Checking test 014 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 640.309690 -0:The maximum resident set size (KB) = 730512 +0:The total amount of wall time = 645.819167 +0:The maximum resident set size (KB) = 730412 -Test 014 rap_2threads_dyn32_phy32_gnu PASS +Test 216 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/hrrr_control_dyn32_phy32_gnu -Checking test 015 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 217 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7146,15 +6825,15 @@ Checking test 015 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.369484 -0:The maximum resident set size (KB) = 681528 +0:The total amount of wall time = 405.420410 +0:The maximum resident set size (KB) = 721528 -Test 015 hrrr_control_dyn32_phy32_gnu PASS +Test 217 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 016 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7200,15 +6879,15 @@ Checking test 016 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.429621 -0:The maximum resident set size (KB) = 721460 +0:The total amount of wall time = 353.700567 +0:The maximum resident set size (KB) = 680560 -Test 016 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_62962/rap_restart_dyn32_phy32_gnu -Checking test 017 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_restart_dyn32_phy32_gnu +Checking test 219 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7246,82 +6925,43 @@ Checking test 017 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.853508 -0:The maximum resident set size (KB) = 522212 +0:The total amount of wall time = 522.881866 +0:The maximum resident set size (KB) = 522296 -Test 017 rap_restart_dyn32_phy32_gnu PASS +Test 219 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/hrrr_control_qr_dyn32_phy32_gnu -Checking test 001 hrrr_control_qr_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_dyn32_phy32_gnu +Checking test 220 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.046482 -0:The maximum resident set size (KB) = 691776 +0:The total amount of wall time = 180.780960 +0:The maximum resident set size (KB) = 515412 -Test 001 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 002 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 221 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 182.126984 -0:The maximum resident set size (KB) = 546064 +0:The total amount of wall time = 182.927900 +0:The maximum resident set size (KB) = 546000 -Test 002 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 221 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/rrfs_smoke_conus13km_phy32_gnu -Checking test 003 rrfs_smoke_conus13km_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_phy32_gnu +Checking test 222 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7336,15 +6976,27 @@ Checking test 003 rrfs_smoke_conus13km_phy32_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 236.544669 -0:The maximum resident set size (KB) = 589064 +0:The total amount of wall time = 237.846969 +0:The maximum resident set size (KB) = 589004 -Test 003 rrfs_smoke_conus13km_phy32_gnu PASS +Test 222 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/rap_control_dyn64_phy32_gnu -Checking test 004 rap_control_dyn64_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +Checking test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 131.068360 +0:The maximum resident set size (KB) = 576528 + +Test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_dyn64_phy32_gnu +Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7390,43 +7042,57 @@ Checking test 004 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 415.069999 -0:The maximum resident set size (KB) = 702780 +0:The total amount of wall time = 413.118221 +0:The maximum resident set size (KB) = 702848 + +Test 224 rap_control_dyn64_phy32_gnu PASS + -Test 004 rap_control_dyn64_phy32_gnu PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_debug_dyn32_phy32_gnu +Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK +0:The total amount of wall time = 143.836761 +0:The maximum resident set size (KB) = 696872 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/rap_control_debug_dyn32_phy32_gnu -Checking test 005 rap_control_debug_dyn32_phy32_gnu results .... +Test 225 rap_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/hrrr_control_debug_dyn32_phy32_gnu +Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.689511 -0:The maximum resident set size (KB) = 696472 +0:The total amount of wall time = 140.587513 +0:The maximum resident set size (KB) = 694404 -Test 005 rap_control_debug_dyn32_phy32_gnu PASS +Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/hrrr_control_debug_dyn32_phy32_gnu -Checking test 006 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/rap_control_dyn64_phy32_debug_gnu +Checking test 227 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 140.518625 -0:The maximum resident set size (KB) = 694512 +0:The total amount of wall time = 148.502860 +0:The maximum resident set size (KB) = 717308 -Test 006 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 227 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/cpld_control_p8_gnu -Checking test 007 cpld_control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_p8_gnu +Checking test 228 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7490,15 +7156,15 @@ Checking test 007 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 488.342984 -0:The maximum resident set size (KB) = 3169436 +0:The total amount of wall time = 503.865041 +0:The maximum resident set size (KB) = 3169572 -Test 007 cpld_control_p8_gnu PASS +Test 228 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/cpld_control_nowave_noaero_p8_gnu -Checking test 008 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_nowave_noaero_p8_gnu +Checking test 229 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7559,15 +7225,15 @@ Checking test 008 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 246.782808 -0:The maximum resident set size (KB) = 1249896 +0:The total amount of wall time = 244.061614 +0:The maximum resident set size (KB) = 1251364 -Test 008 cpld_control_nowave_noaero_p8_gnu PASS +Test 229 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/cpld_debug_p8_gnu -Checking test 009 cpld_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_debug_p8_gnu +Checking test 230 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7619,15 +7285,15 @@ Checking test 009 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 198.853239 -0:The maximum resident set size (KB) = 3186148 +0:The total amount of wall time = 194.193952 +0:The maximum resident set size (KB) = 3185300 -Test 009 cpld_debug_p8_gnu PASS +Test 230 cpld_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/cpld_control_pdlib_p8_gnu -Checking test 010 cpld_control_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_control_pdlib_p8_gnu +Checking test 231 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7690,15 +7356,15 @@ Checking test 010 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 1387.671137 -0:The maximum resident set size (KB) = 1298496 +0:The total amount of wall time = 1392.456385 +0:The maximum resident set size (KB) = 1299992 -Test 010 cpld_control_pdlib_p8_gnu PASS +Test 231 cpld_control_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230816/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_73412/cpld_debug_pdlib_p8_gnu -Checking test 011 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_debug_pdlib_p8_gnu +Checking test 232 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7749,12 +7415,25 @@ Checking test 011 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 688.286243 -0:The maximum resident set size (KB) = 1454880 +0:The total amount of wall time = 691.033362 +0:The maximum resident set size (KB) = 1457532 + +Test 232 cpld_debug_pdlib_p8_gnu PASS -Test 011 cpld_debug_pdlib_p8_gnu PASS + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/datm_cdeps_control_cfsr_gnu +Checking test 233 datm_cdeps_control_cfsr_gnu results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 181.820450 +0:The maximum resident set size (KB) = 683000 + +Test 233 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 18 07:40:24 MDT 2023 -Elapsed time: 00h:48m:39s. Have a nice day! +Mon Aug 21 13:23:38 MDT 2023 +Elapsed time: 04h:18m:30s. Have a nice day! From 2fb90bbfe2ed209495ecc1070f5c1b57737a061c Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 21 Aug 2023 22:55:20 +0000 Subject: [PATCH 18/20] Acorn RT Log --- tests/logs/RegressionTests_acorn.log | 1652 +++++++++++++------------- 1 file changed, 812 insertions(+), 840 deletions(-) diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 8e2150da62..889a2eafe0 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Thu Aug 17 19:43:58 UTC 2023 +Mon Aug 21 20:22:09 UTC 2023 Start Regression test -Testing UFSWM Hash: ace946c95c02f7e1921dfe4b1a299274165a0c26 +Testing UFSWM Hash: e09d1cbaa94000eaae44e2b991e8aca641dea9e2 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 494f027076d3e8e0dbc9dd1a1980ff44383f47e9 ../FV3 (remotes/origin/BugFix_prv_rev) + 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c ../FV3 (heads/develop-10-g0d9066e) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 775 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 531 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 493 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 454 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 2053 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1025 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 488 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 588 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 475 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 534 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 304 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1133 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 726 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 1265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1869 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 547 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1165 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1067 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 2081 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 809 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1078 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 810 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 267 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 586 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 218 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 850 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 628 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 757 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 549 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 439 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 318 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 174 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 889 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 338 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 616 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 858 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 949 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1091 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1553 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1416 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 571 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1026 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 952 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -114,14 +114,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.993969 -The maximum resident set size (KB) = 2965532 +The total amount of wall time = 332.294117 +The maximum resident set size (KB) = 2962224 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -185,14 +185,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 251.114988 -The maximum resident set size (KB) = 1564368 +The total amount of wall time = 249.504044 +The maximum resident set size (KB) = 1559684 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -257,14 +257,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.507684 -The maximum resident set size (KB) = 2996172 +The total amount of wall time = 386.217907 +The maximum resident set size (KB) = 2993780 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -317,14 +317,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 226.585927 -The maximum resident set size (KB) = 2877704 +The total amount of wall time = 227.294711 +The maximum resident set size (KB) = 2878868 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +389,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.320325 -The maximum resident set size (KB) = 3001608 +The total amount of wall time = 384.333825 +The maximum resident set size (KB) = 3006176 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.726165 -The maximum resident set size (KB) = 2893028 +The total amount of wall time = 229.446149 +The maximum resident set size (KB) = 2893700 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +509,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 343.781606 -The maximum resident set size (KB) = 3300876 +The total amount of wall time = 341.643775 +The maximum resident set size (KB) = 3302520 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +569,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.988056 -The maximum resident set size (KB) = 2991824 +The total amount of wall time = 378.867254 +The maximum resident set size (KB) = 2990172 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +629,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.479146 -The maximum resident set size (KB) = 2922860 +The total amount of wall time = 318.992755 +The maximum resident set size (KB) = 2922976 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -701,14 +701,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.224709 -The maximum resident set size (KB) = 2991756 +The total amount of wall time = 383.514797 +The maximum resident set size (KB) = 2992940 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -772,14 +772,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 278.199789 -The maximum resident set size (KB) = 1586532 +The total amount of wall time = 278.837357 +The maximum resident set size (KB) = 1589540 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -841,14 +841,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 294.342515 -The maximum resident set size (KB) = 1640336 +The total amount of wall time = 294.750131 +The maximum resident set size (KB) = 1632828 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.990934 -The maximum resident set size (KB) = 1632628 +The total amount of wall time = 295.501690 +The maximum resident set size (KB) = 1635000 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 014 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 431.018323 -The maximum resident set size (KB) = 2639964 +The total amount of wall time = 433.433861 +The maximum resident set size (KB) = 2639728 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.265092 -The maximum resident set size (KB) = 2997068 +The total amount of wall time = 377.349353 +The maximum resident set size (KB) = 2993096 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.328345 -The maximum resident set size (KB) = 563184 +The total amount of wall time = 214.975650 +The maximum resident set size (KB) = 567300 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.470991 -The maximum resident set size (KB) = 512800 +The total amount of wall time = 130.450557 +The maximum resident set size (KB) = 517224 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1113,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.634714 +The total amount of wall time = 137.349422 The maximum resident set size (KB) = 519468 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.034395 -The maximum resident set size (KB) = 514448 +The total amount of wall time = 132.761664 +The maximum resident set size (KB) = 514392 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1149,14 +1149,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.541529 -The maximum resident set size (KB) = 514588 +The total amount of wall time = 135.464783 +The maximum resident set size (KB) = 513596 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 021 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.007882 -The maximum resident set size (KB) = 674616 +The total amount of wall time = 324.696408 +The maximum resident set size (KB) = 672828 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1213,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.081805 -The maximum resident set size (KB) = 616424 +The total amount of wall time = 528.109412 +The maximum resident set size (KB) = 616280 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1231,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 564.989667 -The maximum resident set size (KB) = 927324 +The total amount of wall time = 563.454715 +The maximum resident set size (KB) = 932968 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 024 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 498.261774 -The maximum resident set size (KB) = 1065800 +The total amount of wall time = 495.340380 +The maximum resident set size (KB) = 1069352 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1299,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.272312 -The maximum resident set size (KB) = 518400 +The total amount of wall time = 92.106064 +The maximum resident set size (KB) = 518496 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.282751 -The maximum resident set size (KB) = 294816 +The total amount of wall time = 50.393867 +The maximum resident set size (KB) = 294648 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.323945 -The maximum resident set size (KB) = 520020 +The total amount of wall time = 84.715706 +The maximum resident set size (KB) = 520940 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.160613 -The maximum resident set size (KB) = 518428 +The total amount of wall time = 137.445503 +The maximum resident set size (KB) = 517388 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.823943 -The maximum resident set size (KB) = 514616 +The total amount of wall time = 137.329723 +The maximum resident set size (KB) = 514468 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 030 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.073302 -The maximum resident set size (KB) = 1487076 +The total amount of wall time = 179.590162 +The maximum resident set size (KB) = 1486268 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1475,14 +1475,14 @@ Checking test 031 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.213545 -The maximum resident set size (KB) = 653348 +The total amount of wall time = 98.325663 +The maximum resident set size (KB) = 654624 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 179.159700 -The maximum resident set size (KB) = 1506360 +The total amount of wall time = 176.347528 +The maximum resident set size (KB) = 1501520 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1575,14 +1575,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 101.464228 -The maximum resident set size (KB) = 668000 +The total amount of wall time = 100.163640 +The maximum resident set size (KB) = 664520 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 034 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.386087 -The maximum resident set size (KB) = 1485200 +The total amount of wall time = 180.526791 +The maximum resident set size (KB) = 1491464 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1675,14 +1675,14 @@ Checking test 035 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.458403 -The maximum resident set size (KB) = 1575560 +The total amount of wall time = 154.827552 +The maximum resident set size (KB) = 1581036 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1701,14 +1701,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.619356 -The maximum resident set size (KB) = 1498276 +The total amount of wall time = 322.081878 +The maximum resident set size (KB) = 1498532 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.514891 -The maximum resident set size (KB) = 1549780 +The total amount of wall time = 234.855678 +The maximum resident set size (KB) = 1551072 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 038 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.418862 -The maximum resident set size (KB) = 1495256 +The total amount of wall time = 180.459823 +The maximum resident set size (KB) = 1492172 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1863,14 +1863,14 @@ Checking test 039 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.664756 -The maximum resident set size (KB) = 1495648 +The total amount of wall time = 205.096930 +The maximum resident set size (KB) = 1497100 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1881,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.191289 -The maximum resident set size (KB) = 661996 +The total amount of wall time = 282.326688 +The maximum resident set size (KB) = 661156 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 149.316486 -The maximum resident set size (KB) = 656608 +The total amount of wall time = 147.865890 +The maximum resident set size (KB) = 657900 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.089129 -The maximum resident set size (KB) = 663272 +The total amount of wall time = 286.267672 +The maximum resident set size (KB) = 659896 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.752772 -The maximum resident set size (KB) = 653512 +The total amount of wall time = 149.714884 +The maximum resident set size (KB) = 654848 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.647583 -The maximum resident set size (KB) = 663656 +The total amount of wall time = 295.755634 +The maximum resident set size (KB) = 661172 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1963,14 +1963,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.388184 -The maximum resident set size (KB) = 700576 +The total amount of wall time = 172.011460 +The maximum resident set size (KB) = 697444 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1978,14 +1978,14 @@ Checking test 046 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 280.232092 -The maximum resident set size (KB) = 647560 +The total amount of wall time = 279.888920 +The maximum resident set size (KB) = 646672 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1996,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.224744 -The maximum resident set size (KB) = 658796 +The total amount of wall time = 279.098564 +The maximum resident set size (KB) = 658448 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 361.273887 -The maximum resident set size (KB) = 348100 +The total amount of wall time = 355.702226 +The maximum resident set size (KB) = 348012 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,14 +2032,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 317.053818 -The maximum resident set size (KB) = 658304 +The total amount of wall time = 311.069549 +The maximum resident set size (KB) = 659756 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 333.551973 -The maximum resident set size (KB) = 661732 +The total amount of wall time = 326.913877 +The maximum resident set size (KB) = 661356 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 196.593199 -The maximum resident set size (KB) = 698328 +The total amount of wall time = 192.703993 +The maximum resident set size (KB) = 701004 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 052 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.583680 -The maximum resident set size (KB) = 897616 +The total amount of wall time = 408.255596 +The maximum resident set size (KB) = 898200 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 238.646409 -The maximum resident set size (KB) = 995444 +The total amount of wall time = 240.182529 +The maximum resident set size (KB) = 996868 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2194,14 +2194,14 @@ Checking test 054 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.679444 -The maximum resident set size (KB) = 901864 +The total amount of wall time = 419.408939 +The maximum resident set size (KB) = 897076 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 055 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 365.688678 -The maximum resident set size (KB) = 973536 +The total amount of wall time = 366.442950 +The maximum resident set size (KB) = 980260 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2294,14 +2294,14 @@ Checking test 056 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.041241 -The maximum resident set size (KB) = 642540 +The total amount of wall time = 207.299950 +The maximum resident set size (KB) = 644680 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2348,14 +2348,14 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.657483 -The maximum resident set size (KB) = 898968 +The total amount of wall time = 409.575500 +The maximum resident set size (KB) = 896044 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 424.048208 -The maximum resident set size (KB) = 901352 +The total amount of wall time = 425.957462 +The maximum resident set size (KB) = 898480 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2448,14 +2448,14 @@ Checking test 059 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 300.440817 -The maximum resident set size (KB) = 652040 +The total amount of wall time = 301.084873 +The maximum resident set size (KB) = 650416 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2502,14 +2502,14 @@ Checking test 060 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 392.588720 -The maximum resident set size (KB) = 893724 +The total amount of wall time = 393.247270 +The maximum resident set size (KB) = 891940 Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 386.657037 -The maximum resident set size (KB) = 911020 +The total amount of wall time = 386.599763 +The maximum resident set size (KB) = 904960 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2610,14 +2610,14 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.520918 -The maximum resident set size (KB) = 893728 +The total amount of wall time = 405.106332 +The maximum resident set size (KB) = 894444 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2664,42 +2664,42 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 351.008441 -The maximum resident set size (KB) = 972016 +The total amount of wall time = 350.900802 +The maximum resident set size (KB) = 973016 Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 287.199253 -The maximum resident set size (KB) = 640188 +The total amount of wall time = 287.340164 +The maximum resident set size (KB) = 637772 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 288.871229 -The maximum resident set size (KB) = 673112 +The total amount of wall time = 288.896703 +The maximum resident set size (KB) = 675216 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2746,14 +2746,14 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 401.039922 -The maximum resident set size (KB) = 898468 +The total amount of wall time = 403.638782 +The maximum resident set size (KB) = 895948 Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.947459 -The maximum resident set size (KB) = 584300 +The total amount of wall time = 467.018516 +The maximum resident set size (KB) = 583172 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 457.360394 -The maximum resident set size (KB) = 576620 +The total amount of wall time = 456.326744 +The maximum resident set size (KB) = 575752 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 149.741299 -The maximum resident set size (KB) = 803856 +The total amount of wall time = 148.335469 +The maximum resident set size (KB) = 800220 Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 145.857181 -The maximum resident set size (KB) = 734108 +The total amount of wall time = 145.644193 +The maximum resident set size (KB) = 733500 Test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 104.623555 -The maximum resident set size (KB) = 797296 +The total amount of wall time = 102.822249 +The maximum resident set size (KB) = 806212 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_conus13km_hrrr_warm_intel Checking test 072 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2875,14 +2875,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 136.695633 -The maximum resident set size (KB) = 786520 +The total amount of wall time = 135.278295 +The maximum resident set size (KB) = 779760 Test 072 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 073 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2891,38 +2891,38 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.581688 -The maximum resident set size (KB) = 802344 +The total amount of wall time = 149.117958 +The maximum resident set size (KB) = 799028 Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 96.079157 -The maximum resident set size (KB) = 796932 +The total amount of wall time = 93.648551 +The maximum resident set size (KB) = 794988 Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.170900 -The maximum resident set size (KB) = 803640 +The total amount of wall time = 98.512743 +The maximum resident set size (KB) = 803560 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_csawmg_intel Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2933,14 +2933,14 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.383173 -The maximum resident set size (KB) = 583268 +The total amount of wall time = 340.236490 +The maximum resident set size (KB) = 581288 Test 076 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2951,14 +2951,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 337.750347 -The maximum resident set size (KB) = 583180 +The total amount of wall time = 336.573874 +The maximum resident set size (KB) = 584304 Test 077 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_ras_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2969,26 +2969,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.439486 -The maximum resident set size (KB) = 550092 +The total amount of wall time = 184.766895 +The maximum resident set size (KB) = 549568 Test 078 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.877243 -The maximum resident set size (KB) = 276340 +The total amount of wall time = 119.063345 +The maximum resident set size (KB) = 276108 Test 079 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 080 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.690150 -The maximum resident set size (KB) = 1490476 +The total amount of wall time = 173.753373 +The maximum resident set size (KB) = 1492424 Test 080 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3053,56 +3053,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.727892 -The maximum resident set size (KB) = 659356 +The total amount of wall time = 277.453810 +The maximum resident set size (KB) = 654952 Test 081 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 903.766262 -The maximum resident set size (KB) = 825848 +The total amount of wall time = 901.097876 +The maximum resident set size (KB) = 829008 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 523.365175 -The maximum resident set size (KB) = 826488 +The total amount of wall time = 520.472801 +The maximum resident set size (KB) = 832760 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_conus13km_hrrr_warm_debug_intel Checking test 084 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 811.228075 -The maximum resident set size (KB) = 804032 +The total amount of wall time = 810.191321 +The maximum resident set size (KB) = 807156 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3129,348 +3129,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.819010 -The maximum resident set size (KB) = 674372 +The total amount of wall time = 159.083802 +The maximum resident set size (KB) = 677840 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.519901 -The maximum resident set size (KB) = 675512 +The total amount of wall time = 158.038310 +The maximum resident set size (KB) = 678108 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.374836 -The maximum resident set size (KB) = 680512 +The total amount of wall time = 177.566209 +The maximum resident set size (KB) = 687704 Test 087 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.268620 -The maximum resident set size (KB) = 683344 +The total amount of wall time = 159.073674 +The maximum resident set size (KB) = 679296 Test 088 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.021295 -The maximum resident set size (KB) = 719020 +The total amount of wall time = 254.317819 +The maximum resident set size (KB) = 719452 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.153386 -The maximum resident set size (KB) = 716424 +The total amount of wall time = 250.054567 +The maximum resident set size (KB) = 717620 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.704455 -The maximum resident set size (KB) = 690924 +The total amount of wall time = 161.657382 +The maximum resident set size (KB) = 694364 Test 091 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.844921 -The maximum resident set size (KB) = 736028 +The total amount of wall time = 162.720217 +The maximum resident set size (KB) = 734612 Test 092 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.326575 -The maximum resident set size (KB) = 1511204 +The total amount of wall time = 186.501515 +The maximum resident set size (KB) = 1514980 Test 093 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1035.921502 -The maximum resident set size (KB) = 683108 +The total amount of wall time = 1040.562643 +The maximum resident set size (KB) = 679044 Test 094 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.581128 -The maximum resident set size (KB) = 1058964 +The total amount of wall time = 295.856809 +The maximum resident set size (KB) = 1051564 Test 095 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.353024 -The maximum resident set size (KB) = 1052996 +The total amount of wall time = 288.444312 +The maximum resident set size (KB) = 1051388 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.456943 -The maximum resident set size (KB) = 1056040 +The total amount of wall time = 297.506845 +The maximum resident set size (KB) = 1059176 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.276051 -The maximum resident set size (KB) = 1137180 +The total amount of wall time = 307.504369 +The maximum resident set size (KB) = 1137860 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.273342 -The maximum resident set size (KB) = 1059212 +The total amount of wall time = 304.398880 +The maximum resident set size (KB) = 1058272 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.321857 -The maximum resident set size (KB) = 1057528 +The total amount of wall time = 302.885125 +The maximum resident set size (KB) = 1054512 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.944688 -The maximum resident set size (KB) = 1059436 +The total amount of wall time = 297.877975 +The maximum resident set size (KB) = 1056980 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.120925 -The maximum resident set size (KB) = 1054720 +The total amount of wall time = 296.632321 +The maximum resident set size (KB) = 1053512 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.957426 -The maximum resident set size (KB) = 1055820 +The total amount of wall time = 291.122841 +The maximum resident set size (KB) = 1054168 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.988093 -The maximum resident set size (KB) = 1052960 +The total amount of wall time = 297.556570 +The maximum resident set size (KB) = 1053052 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 484.875288 -The maximum resident set size (KB) = 1054212 +The total amount of wall time = 484.067101 +The maximum resident set size (KB) = 1054176 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.967017 -The maximum resident set size (KB) = 1053336 +The total amount of wall time = 290.914969 +The maximum resident set size (KB) = 1049988 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 351.941315 -The maximum resident set size (KB) = 1056432 +The total amount of wall time = 352.404536 +The maximum resident set size (KB) = 1053628 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.452352 -The maximum resident set size (KB) = 1057100 +The total amount of wall time = 297.026217 +The maximum resident set size (KB) = 1057064 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.844537 -The maximum resident set size (KB) = 301316 +The total amount of wall time = 298.544223 +The maximum resident set size (KB) = 306048 Test 109 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3481,14 +3481,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 228.042609 -The maximum resident set size (KB) = 893476 +The total amount of wall time = 227.449176 +The maximum resident set size (KB) = 894888 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3535,14 +3535,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 338.516348 -The maximum resident set size (KB) = 778680 +The total amount of wall time = 338.379216 +The maximum resident set size (KB) = 775820 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3589,14 +3589,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 179.571622 -The maximum resident set size (KB) = 772216 +The total amount of wall time = 180.437699 +The maximum resident set size (KB) = 777028 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3643,14 +3643,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.683324 -The maximum resident set size (KB) = 780840 +The total amount of wall time = 176.100926 +The maximum resident set size (KB) = 781456 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3697,14 +3697,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 307.246901 -The maximum resident set size (KB) = 837916 +The total amount of wall time = 306.351304 +The maximum resident set size (KB) = 835000 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3751,14 +3751,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.136552 -The maximum resident set size (KB) = 821796 +The total amount of wall time = 160.735380 +The maximum resident set size (KB) = 817140 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3805,14 +3805,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.204008 -The maximum resident set size (KB) = 779852 +The total amount of wall time = 185.877267 +The maximum resident set size (KB) = 774008 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3851,42 +3851,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 247.314283 -The maximum resident set size (KB) = 615464 +The total amount of wall time = 247.647342 +The maximum resident set size (KB) = 614504 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.182250 -The maximum resident set size (KB) = 604656 +The total amount of wall time = 93.213773 +The maximum resident set size (KB) = 606296 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.366092 -The maximum resident set size (KB) = 630036 +The total amount of wall time = 93.611124 +The maximum resident set size (KB) = 629140 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3902,14 +3902,14 @@ Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 129.496171 -The maximum resident set size (KB) = 727092 +The total amount of wall time = 125.542946 +The maximum resident set size (KB) = 720288 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3925,38 +3925,38 @@ Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 125.546206 -The maximum resident set size (KB) = 681664 +The total amount of wall time = 125.812041 +The maximum resident set size (KB) = 680828 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.135950 -The maximum resident set size (KB) = 711524 +The total amount of wall time = 82.803564 +The maximum resident set size (KB) = 715392 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 90.423015 -The maximum resident set size (KB) = 741268 +The total amount of wall time = 90.902223 +The maximum resident set size (KB) = 737304 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4003,81 +4003,81 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.531682 -The maximum resident set size (KB) = 799144 +The total amount of wall time = 228.688979 +The maximum resident set size (KB) = 797552 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.563693 -The maximum resident set size (KB) = 939568 +The total amount of wall time = 290.283157 +The maximum resident set size (KB) = 939720 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.763351 -The maximum resident set size (KB) = 940444 +The total amount of wall time = 283.445077 +The maximum resident set size (KB) = 934856 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.098881 -The maximum resident set size (KB) = 954284 +The total amount of wall time = 292.140200 +The maximum resident set size (KB) = 957316 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 257.481056 -The maximum resident set size (KB) = 822696 +The total amount of wall time = 256.526581 +The maximum resident set size (KB) = 823232 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 288.104723 -The maximum resident set size (KB) = 1185752 +The total amount of wall time = 287.176389 +The maximum resident set size (KB) = 1186732 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,14 +4086,14 @@ Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 383.462378 -The maximum resident set size (KB) = 866504 +The total amount of wall time = 385.550470 +The maximum resident set size (KB) = 863824 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4102,14 +4102,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 705.001635 -The maximum resident set size (KB) = 897252 +The total amount of wall time = 706.901562 +The maximum resident set size (KB) = 895260 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4120,14 +4120,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 896.671432 -The maximum resident set size (KB) = 924532 +The total amount of wall time = 894.794795 +The maximum resident set size (KB) = 926072 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 308.026934 -The maximum resident set size (KB) = 400992 +The total amount of wall time = 307.676236 +The maximum resident set size (KB) = 401012 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4178,14 +4178,14 @@ Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 327.122833 -The maximum resident set size (KB) = 380020 +The total amount of wall time = 328.554836 +The maximum resident set size (KB) = 377124 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,14 +4194,14 @@ Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 373.246433 -The maximum resident set size (KB) = 399904 +The total amount of wall time = 373.938114 +The maximum resident set size (KB) = 400444 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4248,14 +4248,14 @@ Checking test 136 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 161.354829 -The maximum resident set size (KB) = 262140 +The total amount of wall time = 160.261857 +The maximum resident set size (KB) = 260432 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4302,14 +4302,14 @@ Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 167.592542 -The maximum resident set size (KB) = 273696 +The total amount of wall time = 167.916565 +The maximum resident set size (KB) = 273504 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4391,18 +4391,103 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 463.719026 -The maximum resident set size (KB) = 342928 +The total amount of wall time = 463.435322 +The maximum resident set size (KB) = 345688 Test 138 hafs_global_multiple_4nests_atm_intel PASS -Test 139 hafs_global_multiple_4nests_atm_qr_intel FAIL -Test 139 hafs_global_multiple_4nests_atm_qr_intel FAIL +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_global_multiple_4nests_atm_qr_intel +Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK +The total amount of wall time = 508.692068 +The maximum resident set size (KB) = 373800 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_specified_moving_1nest_atm_intel +Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4411,14 +4496,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 205.635022 -The maximum resident set size (KB) = 408148 +The total amount of wall time = 205.694036 +The maximum resident set size (KB) = 407144 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4440,14 +4525,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 193.549478 -The maximum resident set size (KB) = 406232 +The total amount of wall time = 195.606374 +The maximum resident set size (KB) = 407832 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4469,14 +4554,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 217.523609 -The maximum resident set size (KB) = 405732 +The total amount of wall time = 215.591259 +The maximum resident set size (KB) = 407604 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4485,42 +4570,42 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 249.123445 -The maximum resident set size (KB) = 472892 +The total amount of wall time = 250.628192 +The maximum resident set size (KB) = 472220 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 80.942045 -The maximum resident set size (KB) = 291188 +The total amount of wall time = 81.191857 +The maximum resident set size (KB) = 279616 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 801.920740 -The maximum resident set size (KB) = 496592 +The total amount of wall time = 801.267653 +The maximum resident set size (KB) = 496100 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4531,14 +4616,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 507.840909 -The maximum resident set size (KB) = 527772 +The total amount of wall time = 512.886575 +The maximum resident set size (KB) = 533092 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4546,14 +4631,14 @@ Checking test 147 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 352.194270 -The maximum resident set size (KB) = 876700 +The total amount of wall time = 351.517471 +The maximum resident set size (KB) = 878032 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4561,131 +4646,131 @@ Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 356.346674 -The maximum resident set size (KB) = 862044 +The total amount of wall time = 355.565342 +The maximum resident set size (KB) = 864312 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/hafs_regional_datm_cdeps_intel Checking test 149 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 948.007541 -The maximum resident set size (KB) = 820892 +The total amount of wall time = 943.109194 +The maximum resident set size (KB) = 882048 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_control_cfsr_intel Checking test 150 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.432463 -The maximum resident set size (KB) = 729004 +The total amount of wall time = 143.897979 +The maximum resident set size (KB) = 731760 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_restart_cfsr_intel Checking test 151 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 87.237297 -The maximum resident set size (KB) = 717900 +The total amount of wall time = 87.104482 +The maximum resident set size (KB) = 718228 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_control_gefs_intel Checking test 152 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.189090 -The maximum resident set size (KB) = 614564 +The total amount of wall time = 135.607902 +The maximum resident set size (KB) = 615776 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_iau_gefs_intel Checking test 153 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.376764 -The maximum resident set size (KB) = 619488 +The total amount of wall time = 137.191535 +The maximum resident set size (KB) = 611960 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_stochy_gefs_intel Checking test 154 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.674469 -The maximum resident set size (KB) = 611268 +The total amount of wall time = 138.449679 +The maximum resident set size (KB) = 613924 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_ciceC_cfsr_intel Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.238567 -The maximum resident set size (KB) = 732692 +The total amount of wall time = 143.357983 +The maximum resident set size (KB) = 732776 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_bulk_cfsr_intel Checking test 156 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.604982 -The maximum resident set size (KB) = 717276 +The total amount of wall time = 143.985950 +The maximum resident set size (KB) = 730536 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_bulk_gefs_intel Checking test 157 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.049756 -The maximum resident set size (KB) = 610440 +The total amount of wall time = 135.142151 +The maximum resident set size (KB) = 613684 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_mx025_cfsr_intel Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4694,14 +4779,14 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 423.703475 -The maximum resident set size (KB) = 575564 +The total amount of wall time = 423.355906 +The maximum resident set size (KB) = 578392 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_mx025_gefs_intel Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4710,64 +4795,64 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 422.812876 -The maximum resident set size (KB) = 559516 +The total amount of wall time = 420.798397 +The maximum resident set size (KB) = 559296 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_multiple_files_cfsr_intel Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.728952 -The maximum resident set size (KB) = 728852 +The total amount of wall time = 143.311443 +The maximum resident set size (KB) = 728920 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_3072x1536_cfsr_intel Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 257.598108 -The maximum resident set size (KB) = 1965792 +The total amount of wall time = 258.561158 +The maximum resident set size (KB) = 1970212 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_gfs_intel Checking test 162 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 258.676307 -The maximum resident set size (KB) = 1970140 +The total amount of wall time = 260.097690 +The maximum resident set size (KB) = 1969160 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_control_cfsr_faster_intel Checking test 163 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.103622 -The maximum resident set size (KB) = 732792 +The total amount of wall time = 143.127101 +The maximum resident set size (KB) = 728736 Test 163 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_lnd_gswp3_intel Checking test 164 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4776,14 +4861,14 @@ Checking test 164 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 21.093650 -The maximum resident set size (KB) = 219132 +The total amount of wall time = 21.717563 +The maximum resident set size (KB) = 212344 Test 164 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/datm_cdeps_lnd_gswp3_rst_intel Checking test 165 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4792,14 +4877,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 25.586863 -The maximum resident set size (KB) = 219264 +The total amount of wall time = 25.861373 +The maximum resident set size (KB) = 219816 Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_p8_atmlnd_sbs_intel Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4884,14 +4969,14 @@ Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 235.315303 -The maximum resident set size (KB) = 1546320 +The total amount of wall time = 236.446567 +The maximum resident set size (KB) = 1545864 Test 166 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/atmwav_control_noaero_p8_intel Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4934,14 +5019,14 @@ Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 111.543881 -The maximum resident set size (KB) = 1530536 +The total amount of wall time = 108.157228 +The maximum resident set size (KB) = 1536324 Test 167 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/control_atmwav_intel Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4985,14 +5070,14 @@ Checking test 168 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.510287 -The maximum resident set size (KB) = 544824 +The total amount of wall time = 93.362661 +The maximum resident set size (KB) = 544132 Test 168 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/atmaero_control_p8_intel Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5036,14 +5121,14 @@ Checking test 169 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 253.990077 -The maximum resident set size (KB) = 2825088 +The total amount of wall time = 249.887559 +The maximum resident set size (KB) = 2827692 Test 169 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/atmaero_control_p8_rad_intel Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5087,14 +5172,14 @@ Checking test 170 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.834485 -The maximum resident set size (KB) = 2892188 +The total amount of wall time = 283.372097 +The maximum resident set size (KB) = 2893188 Test 170 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/atmaero_control_p8_rad_micro_intel Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5138,14 +5223,14 @@ Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.324442 -The maximum resident set size (KB) = 2901032 +The total amount of wall time = 290.957302 +The maximum resident set size (KB) = 2899244 Test 171 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_atmaq_intel Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5161,14 +5246,14 @@ Checking test 172 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 675.879082 -The maximum resident set size (KB) = 2311144 +The total amount of wall time = 679.704727 +The maximum resident set size (KB) = 2295360 Test 172 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_11985/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230818/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191970/regional_atmaq_debug_intel Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5182,125 +5267,12 @@ Checking test 173 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1295.626126 -The maximum resident set size (KB) = 2137640 +The total amount of wall time = 1298.040045 +The maximum resident set size (KB) = 2135788 Test 173 regional_atmaq_debug_intel PASS -FAILED TESTS: -hafs_global_multiple_4nests_atm_qr_intel 139 failed in run_test - -REGRESSION TEST FAILED -Thu Aug 17 23:12:34 UTC 2023 -Elapsed time: 03h:28m:37s. Have a nice day! -Fri Aug 18 02:13:39 UTC 2023 -Start Regression test - -Testing UFSWM Hash: ace946c95c02f7e1921dfe4b1a299274165a0c26 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) - dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 494f027076d3e8e0dbc9dd1a1980ff44383f47e9 ../FV3 (remotes/origin/BugFix_prv_rev) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 06acdc8e15ea9acf499b26f7f40c9852249c0690 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9800-g06acdc8e1) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile hafsw_intel elapsed time 511 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_190105/hafs_global_multiple_4nests_atm_qr_intel -Checking test 001 hafs_global_multiple_4nests_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 500.318601 -The maximum resident set size (KB) = 371624 - -Test 001 hafs_global_multiple_4nests_atm_qr_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Fri Aug 18 02:33:02 UTC 2023 -Elapsed time: 00h:19m:24s. Have a nice day! +Mon Aug 21 22:10:50 UTC 2023 +Elapsed time: 01h:48m:42s. Have a nice day! From 4317b7eedb6c3c28eb8b033802a7702051391745 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Tue, 22 Aug 2023 13:26:04 +0000 Subject: [PATCH 19/20] point to upstream ufs/dev for FV3/ccpp/physics --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 0d9066e97a..234af9924d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0d9066e97ad44e4c318bc9f2bff0b82ec90cf93c +Subproject commit 234af9924db5a68ebad202d6f11739f05dd148c0 From bfe77bebb6ca758553581ea368511bdaca51bd44 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Tue, 22 Aug 2023 13:44:09 +0000 Subject: [PATCH 20/20] point to upstream develop for FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 234af9924d..94a49f8e74 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 234af9924db5a68ebad202d6f11739f05dd148c0 +Subproject commit 94a49f8e74c59851473b5f0bde9d97e7f6afc33f